Package | away3d.core.base |
Class | public class Element |
Subclasses | Face, Segment, Sprite3D |
Segment
or Face
.
Property | Defined by | ||
---|---|---|---|
commands : Vector [read-only]
Returns an array of drawing command strings that make up the 3d element.
| Element | ||
extra : Object
An optional untyped object that can contain used-defined properties.
| Element | ||
material : Material | Element | ||
parent : Geometry
Defines the parent 3d object of the segment.
| Element | ||
pathCommands : Array [read-only]
Returns an array of drawing command objects that are used by the face.
| Element | ||
uvs : Vector [read-only]
Returns an array of uv objects that are used by the element.
| Element | ||
vertices : Vector [read-only]
Returns an array of vertex objects that make up the 3d element.
| Element | ||
visible : Boolean
Determines whether the 3d element is visible in the scene.
| Element |
Property | Defined by | ||
---|---|---|---|
_commands : Vector | Element | ||
_lastAddedVertex : Vertex | Element | ||
_material : Material | Element | ||
_pathCommands : Array | Element | ||
_uvs : Vector | Element | ||
_vertices : Vector | Element |
_commands | property |
protected var _commands:Vector
commands | property |
commands:Vector
[read-only]Returns an array of drawing command strings that make up the 3d element.
Implementation public function get commands():Vector
extra | property |
public var extra:Object
An optional untyped object that can contain used-defined properties.
_lastAddedVertex | property |
protected var _lastAddedVertex:Vertex
_material | property |
protected var _material:Material
material | property |
material:Material
[read-write]Implementation
public function get material():Material
public function set material(value:Material):void
parent | property |
public var parent:Geometry
Defines the parent 3d object of the segment.
_pathCommands | property |
protected var _pathCommands:Array
pathCommands | property |
pathCommands:Array
[read-only]Returns an array of drawing command objects that are used by the face.
Implementation public function get pathCommands():Array
_uvs | property |
protected var _uvs:Vector
uvs | property |
uvs:Vector
[read-only]Returns an array of uv objects that are used by the element.
Implementation public function get uvs():Vector
_vertices | property |
protected var _vertices:Vector
vertices | property |
vertices:Vector
[read-only]Returns an array of vertex objects that make up the 3d element.
Implementation public function get vertices():Vector
visible | property |
visible:Boolean
[read-write]Determines whether the 3d element is visible in the scene.
Implementation public function get visible():Boolean
public function set visible(value:Boolean):void