Package | away3d.core.base.data |
Class | public class UV |
Property | Defined by | ||
---|---|---|---|
u : Number
Defines the horizontal coordinate of the texture value.
| UV | ||
v : Number
Defines the vertical coordinate of the texture value.
| UV |
Method | Defined by | ||
---|---|---|---|
UV
(u:Number = 0, v:Number = 0)
Creates a new
UV object. | UV | ||
returns a new UV value Object
| UV | ||
toString():String
returns the value object as a string for trace/debug purpose
| UV |
u | property |
u:Number
[read-write]Defines the horizontal coordinate of the texture value.
Implementation public function get u():Number
public function set u(value:Number):void
v | property |
v:Number
[read-write]Defines the vertical coordinate of the texture value.
Implementation public function get v():Number
public function set v(value:Number):void
UV | () | constructor |
public function UV(u:Number = 0, v:Number = 0)
Parameters
u:Number (default = 0 ) — [optional] The horizontal coordinate of the texture value. Defaults to 0.
|
|
v:Number (default = 0 ) — [optional] The vertical coordinate of the texture value. Defaults to 0.
|
clone | () | method |
toString | () | method |
public function toString():String
returns the value object as a string for trace/debug purpose
ReturnsString |