| Package | graphics.geom |
| Class | public class UV |
| Inheritance | UV Object |
| Implements | Geometry |
| Subclasses | UVW |
| Property | Defined By | ||
|---|---|---|---|
| u : Number
Defines the horizontal coordinate value of the texture. | UV | ||
| v : Number
Defines the vertical coordinate value of the texture. | UV | ||
| ZERO : UV [static]
Defines the UVCoordinate object with the u and v properties set to zero. | UV | ||
| Method | Defined By | ||
|---|---|---|---|
UV(u:Number = 0, v:Number = 0)
Creates a new UV instance. | UV | ||
clone():*
Returns a shallow copy of this instance. | UV | ||
equals(o:*):Boolean
Compares the specified object with this object for equality. | UV | ||
toObject():Object
Returns the Object representation of this object. | UV | ||
toSource(indent:int = 0):String
Returns the source code string representation of the object. | UV | ||
toString():String
Returns the String representation of the object. | UV | ||
| u | property |
public var u:NumberDefines the horizontal coordinate value of the texture.
| v | property |
public var v:NumberDefines the vertical coordinate value of the texture.
| ZERO | property |
public static var ZERO:UVDefines the UVCoordinate object with the u and v properties set to zero.
| UV | () | Constructor |
public function UV(u:Number = 0, v:Number = 0)Creates a new UV 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.
Parameters
o:* |
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.
Parameters
indent: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.
|