| Package | org.un.flex.utils.geom |
| Interface | public interface IPoint |
| Implementors | ComplexNumber |
| Method | Defined by | ||
|---|---|---|---|
|
clone():Object
Creates a deep copy of the Point.
| IPoint | ||
|
equals(obj:Object):Boolean
Returns true if the parameter object is equals to
this and false otherwise.
| IPoint | ||
|
Sets this point to the given point.
| IPoint | ||
|
toString():String
Returns a String representation of the point.
| IPoint | ||
| clone | () | method |
public function clone():ObjectCreates a deep copy of the Point.
ReturnsObject — A deep copy of the Point.
|
| equals | () | method |
public function equals(obj:Object):BooleanReturns true if the parameter object is equals to this and false otherwise.
Parametersobj:Object — Any object.
|
Boolean — True if obj equals this.
|
| setTo | () | method |
public function setTo(p:IPoint):voidSets this point to the given point.
Parametersp:IPoint — The new point.
|
| toString | () | method |
public function toString():StringReturns a String representation of the point.
ReturnsString — A String in appropriate format.
|