Packageaway3d.core.partition
Classpublic class MeshNode
InheritanceMeshNode Inheritance EntityNode Inheritance NodeBase Inheritance Object

MeshNode is a space partitioning leaf node that contains a Mesh object.



Public Properties
 PropertyDefined By
 Inheritedentity : Entity
[read-only] The entity contained in this leaf node.
EntityNode
  mesh : Mesh
[read-only] The mesh object contained in the partition node.
MeshNode
 Inheritedparent : NodeBase
[read-only] The parent node.
NodeBase
 InheritedshowDebugBounds : Boolean
NodeBase
Protected Properties
 PropertyDefined By
 Inherited_childNodes : Vector.<NodeBase>
NodeBase
 Inherited_numChildNodes : uint
NodeBase
 Inherited_parent : NodeBase
NodeBase
Public Methods
 MethodDefined By
  
Creates a new MeshNode object.
MeshNode
  
[override] Allows the traverser to visit the current node.
MeshNode
 Inherited
addNode(node:NodeBase):void
Adds a node to the tree.
NodeBase
 Inherited
Finds the partition that contains (or should contain) the given entity.
NodeBase
 Inherited
isInFrustum(camera:Camera3D):Boolean
[override] Tests if the current node is at least partly inside the frustum.
EntityNode
 Inherited
Detaches the node from its parent.
EntityNode
 Inherited
removeNode(node:NodeBase):void
Removes a child node from the tree.
NodeBase
Protected Methods
 MethodDefined By
 Inherited
NodeBase
Property Detail
meshproperty
mesh:Mesh  [read-only]

The mesh object contained in the partition node.


Implementation
    public function get mesh():Mesh
Constructor Detail
MeshNode()Constructor
public function MeshNode(mesh:Mesh)

Creates a new MeshNode object.

Parameters
mesh:Mesh — The mesh to be contained in the node.
Method Detail
acceptTraverser()method
override public function acceptTraverser(traverser:PartitionTraverser):void

Allows the traverser to visit the current node. If the traverser's enterNode method returns true, the traverser will be sent down the child nodes of the tree. This method should be overridden if the order of traversal is important (such as for BSP trees) - or if static child nodes are not added using addNode, but are linked to separately.

Parameters

traverser:PartitionTraverser — The traverser visiting the node.