A DAG node that refers to subdivision geometry.
#include <AlSubdivNode.h> class AlSubdivNode : public AlObject ~AlSubdivNode(); virtual AlObject *copyWrapper() const; virtual AlObjectType type() const; class AlSubdiv* subdiv() const;
AlSubdivNode is the class used to access and manipulate subdivision object in the DAG. This class behaves like other DAG nodes (see AlDagNode for a description of the usage and purpose of DAG nodes). You can access the geometry of the curve using the 'mesh()' method, which returns a pointer to an AlMesh object.
Deletes an AlSubdivNode wrapper object. Note that this destructor does not delete the associated subdivision object. To properly remove a node or geometry from the DAG, use AlDagNode::deleteObject() (see AlDagNode).
Makes an exact copy of the AlSubdivNode wrapper.
Returns the class identifier kGroupNodeType.
Returns a pointer to the AlSubdiv data.