Packageaway3dlite.animators.frames
Classpublic class Frame
InheritanceFrame Inheritance Object

Stores a set of vertices representing the position of a mesh for a sigle frame of an animation.

See also

away3dlite.animators.MovieMesh


Public Properties
 PropertyDefined By
  name : String
The name of the frame.
Frame
  vertices : Vector.<Number>
The array of vertices contained inside the frame
Frame
Public Methods
 MethodDefined By
  
Frame(name:String, vertices:Vector.<Number>)
Creates a new Frame object with a name and a set of vertices
Frame
  
toString():String
Returns a string representation of the Frame object
Frame
Property Detail
nameproperty
public var name:String

The name of the frame.

verticesproperty 
public var vertices:Vector.<Number>

The array of vertices contained inside the frame

Constructor Detail
Frame()Constructor
public function Frame(name:String, vertices:Vector.<Number>)

Creates a new Frame object with a name and a set of vertices

Parameters
name:String — The name of the frame.
 
vertices:Vector.<Number> — An array of Vertex objects.
####INIT####
Method Detail
toString()method
public function toString():String

Returns a string representation of the Frame object

Returns
String