| Package | pegas.geom |
| Class | public class UVCoordinate |
| Implements | Geometry |
| Property | Defined by | ||
|---|---|---|---|
| u : Number
Defined the u horizontal coordinate value.
| UVCoordinate | ||
| v : Number
Defined the v vertical coordinate value.
| UVCoordinate | ||
| ZERO : UVCoordinate
[static]
Defines the UVCoordinate object with the u and v properties set to zero.
| UVCoordinate | ||
| Method | Defined by | ||
|---|---|---|---|
|
UVCoordinate(u:Number = 0, v:Number = 0)
Creates a new UVCoordinate instance.
| UVCoordinate | ||
|
clone():*
Returns a shallow copy of this instance.
| UVCoordinate | ||
|
equals(o:*):Boolean
Compares the specified object with this object for equality.
| UVCoordinate | ||
|
toObject():Object
Returns the Object representation of this object.
| UVCoordinate | ||
|
toSource(indent:int = 0):String
Returns the source code string representation of the object.
| UVCoordinate | ||
|
toString():String
Returns the string representation of the object.
| UVCoordinate | ||
| u | property |
public var u:NumberDefined the u horizontal coordinate value.
| v | property |
public var v:NumberDefined the v vertical coordinate value.
| ZERO | property |
public static var ZERO:UVCoordinateDefines the UVCoordinate object with the u and v properties set to zero.
| UVCoordinate | () | constructor |
public function UVCoordinate(u:Number = 0, v:Number = 0)Creates a new UVCoordinate instance.
Parametersu:Number (default = 0) — The horizontal coordinate value. The default value is zero.
|
|
v:Number (default = 0) — The vertical coordinate value. The default value is zero.
|
| clone | () | method |
public function clone():*Returns a shallow copy of this instance.
Returns* — a shallow copy of this instance.
|
| equals | () | method |
public function equals(o:*):BooleanCompares the specified object with this object for equality.
Parameterso:* |
Boolean — true if the the specified object is equal with this object.
|
| toObject | () | method |
public function toObject():ObjectReturns the Object representation of this object.
ReturnsObject — the Object representation of this object.
|
| toSource | () | method |
public function toSource(indent:int = 0):StringReturns the source code string representation of the object.
Parametersindent:int (default = 0) |
String — the source code string representation of the object.
|
| toString | () | method |
public function toString():StringReturns the string representation of the object.
ReturnsString — the string representation of the object.
|