| Package | away3d.core.base.data |
| Class | public class UV |
| Inheritance | UV Object |
| 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:NumberDefines the horizontal coordinate of the texture value.
public function get u():Number public function set u(value:Number):void| v | property |
v:NumberDefines the vertical coordinate of the texture value.
public function get v():Number public function set v(value:Number):void| UV | () | Constructor |
public function UV(u:Number = 0, v:Number = 0)
Creates a new UV object.
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():Stringreturns the value object as a string for trace/debug purpose
ReturnsString |