Package | away3d.primitives |
Class | public class WireSphere |
Inheritance | WireSphere ![]() ![]() ![]() ![]() ![]() |
Property | Defined by | ||
---|---|---|---|
![]() | alpha : Number
An optional alpha value that can be applied to the 3d object.
| Object3D | |
![]() | blendMode : String
An optional blend mode that can be applied to the 3d object.
| Object3D | |
![]() | boundingRadius : Number
Returns the bounding radius of the 3d object
| BaseMesh | |
![]() | elements : Array
Returns an array of the elements contained in the wiremesh object.
| WireMesh | |
![]() | extra : Object
An optional untyped object that can contain used-defined properties
| Object3D | |
![]() | filters : Array
An optional array of filters that can be applied to the 3d object.
| Object3D | |
![]() | fps : int
Determines the frames per second at which the animation will run.
| BaseMesh | |
![]() | frame : int
Indicates the current frame of animation
| BaseMesh | |
![]() | framenames : Dictionary
A dictionary containing all frame names of the mesh
| BaseMesh | |
![]() | frames : Dictionary
A dictionary containing all frames of the mesh
| BaseMesh | |
![]() | hasCycleEvent : Boolean
Indicates whether the animation has a cycle event listener
| BaseMesh | |
![]() | hasSequenceEvent : Boolean
Indicates whether the animation has a sequencedone event listener
| BaseMesh | |
![]() | inverseSceneTransform : Matrix3D | Object3D | |
![]() | isRunning : Boolean
Indicates whether the animation is currently running.
| BaseMesh | |
![]() | loop : Boolean
Determines whether the animation will loop.
| BaseMesh | |
![]() | material : ISegmentMaterial
Defines the material used to render the segments in the wiremesh object.
| WireMesh | |
![]() | maxX : Number
Returns the maximum x value of the 3d object
| BaseMesh | |
![]() | maxY : Number
Returns the maximum y value of the 3d object
| BaseMesh | |
![]() | maxZ : Number
Returns the maximum z value of the 3d object
| BaseMesh | |
![]() | minX : Number
Returns the minimum x value of the 3d object
| BaseMesh | |
![]() | minY : Number
Returns the minimum y value of the 3d object
| BaseMesh | |
![]() | minZ : Number
Returns the minimum z value of the 3d object
| BaseMesh | |
![]() | mouseEnabled : Boolean = true
Defines whether mouse events are received on the 3d object
| Object3D | |
![]() | name : String
An optional name string for the 3d object.
| Object3D | |
![]() | ownCanvas : Boolean = false
Defines whether the contents of the 3d object are rendered inside it's own sprite
| Object3D | |
![]() | ownSession : AbstractRenderSession
Defines whether the contents of the 3d object are rendered using it's own render session
| Object3D | |
![]() | parent : ObjectContainer3D
Defines the parent of the 3d object.
| Object3D | |
![]() | position : Number3D
Defines the position of the 3d object, relative to the local coordinates of the parent
ObjectContainer3D . | Object3D | |
![]() | projection : Projection | Object3D | |
![]() | pushback : Boolean
Elements use their furthest point from the camera when z-sorting
| BaseMesh | |
![]() | pushfront : Boolean
Elements use their nearest point to the camera when z-sorting
| BaseMesh | |
radius : Number
Defines the radius of the wire sphere.
| WireSphere | ||
![]() | rotationX : Number
Defines the euler angle of rotation of the 3d object around the x-axis, relative to the local coordinates of the parent
ObjectContainer3D . | Object3D | |
![]() | rotationY : Number
Defines the euler angle of rotation of the 3d object around the y-axis, relative to the local coordinates of the parent
ObjectContainer3D . | Object3D | |
![]() | rotationZ : Number
Defines the euler angle of rotation of the 3d object around the z-axis, relative to the local coordinates of the parent
ObjectContainer3D . | Object3D | |
![]() | scene : Scene3D
Returns the parent scene of the 3d object
| Object3D | |
![]() | scenePosition : Number3D
Returns the position of the 3d object, relative to the global coordinates of the
Scene3D . | Object3D | |
![]() | sceneTransform : Matrix3D
Returns the transformation of the 3d object, relative to the global coordinates of the
Scene3D . | AbstractWirePrimitive | |
![]() | sceneTransformed : Boolean | Object3D | |
![]() | segments : Array
Returns an array of the segments contained in the wiremesh object.
| WireMesh | |
segmentsH : Number
Defines the number of vertical segments that make up the wire sphere.
| WireSphere | ||
segmentsW : Number
Defines the number of horizontal segments that make up the wire sphere.
| WireSphere | ||
![]() | session : AbstractRenderSession
The render session used by the 3d object
| Object3D | |
![]() | smooth : Boolean
Determines whether the animation will smooth motion (interpolate) between frames.
| BaseMesh | |
![]() | transform : Matrix3D
Defines the transformation of the 3d object, relative to the local coordinates of the parent
ObjectContainer3D . | Object3D | |
![]() | type : String
String defining the type of class used to generate the mesh.
| BaseMesh | |
![]() | url : String
String defining the source of the mesh.
| BaseMesh | |
![]() | useHandCursor : Boolean = false
Defines whether a hand cursor is displayed when the mouse rolls over the 3d object.
| Object3D | |
![]() | vertices : Array
Returns an array of the vertices contained in the mesh object
| BaseMesh | |
![]() | viewTransform : Matrix3D | Object3D | |
![]() | visible : Boolean = true
Defines whether the 3d object is visible in the scene
| Object3D | |
![]() | x : Number
Defines the x coordinate of the 3d object relative to the local coordinates of the parent
ObjectContainer3D . | Object3D | |
![]() | y : Number
Defines the y coordinate of the 3d object relative to the local coordinates of the parent
ObjectContainer3D . | Object3D | |
yUp : Boolean
Defines whether the coordinates of the wire sphere points use a yUp orientation (true) or a zUp orientation (false).
| WireSphere | ||
![]() | z : Number
Defines the z coordinate of the 3d object relative to the local coordinates of the parent
ObjectContainer3D . | Object3D |
Method | Defined by | ||
---|---|---|---|
WireSphere
(init:Object = null)
Creates a new
WireSphere object. | WireSphere | ||
![]() |
addOnCycle(listener:Function):void
Default method for adding a cycle event listener
| BaseMesh | |
![]() |
addOnDimensionsChange(listener:Function):void
Default method for adding a dimensionschanged event listener
| Object3D | |
![]() |
addOnMouseDown(listener:Function):void
Default method for adding a mouseDown3D event listener
| Object3D | |
![]() |
addOnMouseMove(listener:Function):void
Default method for adding a mouseMove3D event listener
| Object3D | |
![]() |
addOnMouseOut(listener:Function):void
Default method for adding a mouseOut3D event listener
| Object3D | |
![]() |
addOnMouseOver(listener:Function):void
Default method for adding a mouseOver3D event listener
| Object3D | |
![]() |
addOnMouseUp(listener:Function):void
Default method for adding a mouseUp3D event listener
| Object3D | |
![]() |
addOnRadiusChange(listener:Function):void
Default method for adding a radiuschanged event listener
| Object3D | |
![]() |
addOnSceneChange(listener:Function):void
Default method for adding a scenechanged event listener
| Object3D | |
![]() |
addOnSceneTransformChange(listener:Function):void
Default method for adding a scenetransformchanged event listener
| Object3D | |
![]() |
addOnSequenceDone(listener:Function):void
Default method for adding a squencedone event listener
| BaseMesh | |
![]() |
addOnTransformChange(listener:Function):void
Default method for adding a transformchanged event listener
| Object3D | |
![]() |
Adds a segment object to the wiremesh object.
| WireMesh | |
buildPrimitive():void
Builds the vertex, face and uv objects that make up the 3d primitive.
| WireSphere | ||
![]() |
clone(object:* = null):*
Duplicates the 3d object's properties to another
Object3D object
| Object3D | |
![]() |
Calulates the absolute distance between the local 3d object position and the position of the given 3d object
| Object3D | |
![]() |
gotoAndPlay(value:int):void
Starts playing the animation at the specified frame.
| BaseMesh | |
![]() |
gotoAndStop(value:int):void
Brings the animation to the specifed frame and stops it there.
| BaseMesh | |
![]() |
Rotates the 3d object around to face a point defined relative to the local coordinates of the parent
ObjectContainer3D . | Object3D | |
![]() |
moveBackward(distance:Number):void
Moves the 3d object backwards along it's local z axis
| Object3D | |
![]() |
moveDown(distance:Number):void
Moves the 3d object backwards along it's local y axis
| Object3D | |
![]() |
moveForward(distance:Number):void
Moves the 3d object forwards along it's local z axis
| Object3D | |
![]() |
moveLeft(distance:Number):void
Moves the 3d object backwards along it's local x axis
| Object3D | |
![]() |
moveRight(distance:Number):void
Moves the 3d object forwards along it's local x axis
| Object3D | |
![]() |
Moves the 3d object directly to a point in space
| Object3D | |
![]() |
moveUp(distance:Number):void
Moves the 3d object forwards along it's local y axis
| Object3D | |
![]() |
pitch(angle:Number):void
Rotates the 3d object around it's local x-axis
| Object3D | |
![]() |
Plays a sequence of frames
| BaseMesh | |
![]() |
Called from the
PrimitiveTraverser when passing DrawPrimitive objects to the primitive consumer object
| WireMesh | |
![]() |
removeOnCycle(listener:Function):void
Default method for removing a cycle event listener
| BaseMesh | |
![]() |
removeOnDimensionsChange(listener:Function):void
Default method for removing a dimensionschanged event listener
| Object3D | |
![]() |
removeOnMouseDown(listener:Function):void
Default method for removing a mouseDown3D event listener
| Object3D | |
![]() |
removeOnMouseMove(listener:Function):void
Default method for removing a mouseMove3D event listener
| Object3D | |
![]() |
removeOnMouseOut(listener:Function):void
Default method for removing a mouseOut3D event listener
| Object3D | |
![]() |
removeOnMouseOver(listener:Function):void
Default method for removing a mouseOver3D event listener
| Object3D | |
![]() |
removeOnMouseUp(listener:Function):void
Default method for removing a mouseUp3D event listener
| Object3D | |
![]() |
removeOnRadiusChange(listener:Function):void
Default method for removing a radiuschanged event listener
| Object3D | |
![]() |
removeOnSceneChange(listener:Function):void
Default method for removing a scenechanged event listener
| Object3D | |
![]() |
removeOnSceneTransformChange(listener:Function):void
Default method for removing a scenetransformchanged event listener
| Object3D | |
![]() |
removeOnSequenceDone(listener:Function):void
Default method for removing a squencedone event listener
| BaseMesh | |
![]() |
removeOnTransformChange(listener:Function):void
Default method for removing a transformchanged event listener
| Object3D | |
![]() |
Removes a segment object to the wiremesh object.
| WireMesh | |
![]() |
roll(angle:Number):void
Rotates the 3d object around it's local z-axis
| Object3D | |
![]() |
Rotates the 3d object around an axis by a defined angle
| Object3D | |
![]() |
scale(scale:Number):void
Scales the contents of the mesh.
| BaseMesh | |
![]() |
scaleAnimation(scale:Number):void
Scales the vertex positions contained within all animation frames
| BaseMesh | |
![]() |
scaleX(scaleX:Number):void
Scales the contents of the mesh along the x-axis.
| BaseMesh | |
![]() |
scaleY(scaleY:Number):void
Scales the contents of the mesh along the y-axis.
| BaseMesh | |
![]() |
scaleZ(scaleZ:Number):void
Scales the contents of the mesh along the z-axis.
| BaseMesh | |
![]() |
setPlaySequences(playlist:Array, loopLast:Boolean = false):void
Passes an array of animationsequence objects to be added to the animation.
| BaseMesh | |
![]() |
tick(time:int):void
Called by the
TickTraverser . | BaseMesh | |
![]() |
toString():String
Used to trace the values of a 3d object.
| Object3D | |
![]() |
Moves the 3d object along a vector by a defined length
| Object3D | |
![]() |
Used when traversing the scenegraph
| Object3D | |
Returns the vertex object specified by the grid position of the mesh.
| WireSphere | ||
![]() |
yaw(angle:Number):void
Rotates the 3d object around it's local y-axis
| Object3D |
radius | property |
radius:Number
[read-write]Defines the radius of the wire sphere. Defaults to 100.
Implementation public function get radius():Number
public function set radius(value:Number):void
segmentsH | property |
segmentsH:Number
[read-write]Defines the number of vertical segments that make up the wire sphere. Defaults to 1.
Implementation public function get segmentsH():Number
public function set segmentsH(value:Number):void
segmentsW | property |
segmentsW:Number
[read-write]Defines the number of horizontal segments that make up the wire sphere. Defaults to 8.
Implementation public function get segmentsW():Number
public function set segmentsW(value:Number):void
yUp | property |
yUp:Boolean
[read-write]Defines whether the coordinates of the wire sphere points use a yUp orientation (true) or a zUp orientation (false). Defaults to true.
Implementation public function get yUp():Boolean
public function set yUp(value:Boolean):void
WireSphere | () | constructor |
public function WireSphere(init:Object = null)
Parameters
init:Object (default = null ) — [optional] An initialisation object for specifying default instance properties.
|
buildPrimitive | () | method |
public override function buildPrimitive():void
Builds the vertex, face and uv objects that make up the 3d primitive.
vertex | () | method |
public function vertex(w:int, h:int):Vertex
Returns the vertex object specified by the grid position of the mesh.
Parametersw:int — The horizontal position on the primitive mesh.
|
|
h:int — The vertical position on the primitive mesh.
|
Vertex |