This reference page is linked to from the following overview topics: Threading and Maya.
Iterator class for geometry data.
This class is the iterator class for geometry data, and can be used to loop over the CVs of NURBS, the points of subds & lattices, and the vertices of polygonal meshes.
MItGeometry iter( dagPath ); for ( ; !iter.isDone(); iter.next() ) { MPoint pt = iter.position(); // do something with it }
Traversal of a geometry group within a compute() method.
MStatus exampleIterator::compute(const MPlug& plug, MDataBlock& dataBlock) { MStatus status; if (plug.attribute() == oOutputGeometry) { // get the input geometry and input groupId MDataHandle hInputGeom = dataBlock.inputValue(inputGeomAttr); MDataHandle hGroupId = dataBlock.inputValue(inputGroupIdAttr); unsigned int groupId = hGroup.asLong(); MDataHandle hOutput = dataBlock.outputValue(plug); hOutput.copy(hInputGeom); // do an iteration where we get each point and set it to a new value MItGeometry iter(hOutput,groupId,false); for ( ; !iter.isDone(); iter.next()) { MPoint pt = iter.position(); // do something here to modify the point ... iter.setPosition(pt); } } else { status = MStatus::kUnknownParameter; } return status; }
#include <MItGeometry.h>
Public Member Functions |
|
MItGeometry (const MDagPath &dagPath, MStatus *ReturnStatus=NULL) | |
Constructor. |
|
MItGeometry (const MDagPath &dagPath, MObject &component, MStatus *ReturnStatus=NULL) | |
Constructor. |
|
MItGeometry (MObject &dagObject, MStatus *ReturnStatus=NULL) | |
Constructor. |
|
MItGeometry (MDataHandle &dataHandle, unsigned int groupId, bool readOnly=true, MStatus *ReturnStatus=NULL) | |
Constructor. |
|
MItGeometry (MDataHandle &dataHandle, bool readOnly=true, MStatus *ReturnStatus=NULL) | |
Constructor. |
|
virtual | ~MItGeometry () |
Class destructor. |
|
bool | isDone (MStatus *ReturnStatus=NULL) const |
Returns true if the iteration is
finished, i.e. |
|
MStatus | next () |
Advance to the next component in the
iteration. |
|
MPoint | position (MSpace::Space space=MSpace::kObject, MStatus *ReturnStatus=NULL) const |
Return the position of the current
point/CV/vertex component. |
|
MStatus | setPosition (const MPoint &point, MSpace::Space space=MSpace::kObject) |
Set the position of the current
point/CV/vertex. |
|
MWeight | weight (MStatus *ReturnStatus=NULL) const |
Return the weight of the current
point/CV/vertex component. |
|
int | index (MStatus *ReturnStatus=NULL) const |
This method returns the index of the current
point/CV/vertex component in the iteration. |
|
MObject | component (MStatus *ReturnStatus=NULL) const |
This method is obsolete. |
|
MObject | currentItem (MStatus *ReturnStatus=NULL) const |
This method returns the current component in
the iteration. |
|
int | count (MStatus *ReturnStatus=NULL) const |
Return the number of items in this
iteration. |
|
int | exactCount (MStatus *ReturnStatus=NULL) |
Return the exact number of items in this
iteration. |
|
MStatus | reset () |
Reset the iterator to the first component.
|
|
MStatus | allPositions (MPointArray &points, MSpace::Space space=MSpace::kObject) const |
Return the position of all the
points/CVs/vertices. |
|
MStatus | setAllPositions (const MPointArray &points, MSpace::Space space=MSpace::kObject) |
Set the position of all the
points/CVs/vertices at once. |
|
Static Public Member Functions |
|
static const char * | className () |
Returns the name of this class. |
MItGeometry | ( | const MDagPath & | dagPath, |
MStatus * | ReturnStatus =
NULL |
||
) |
Constructor.
This constructor is used to iterate over all of the points/CV/vertices of a dag object given a particular dag path.
[in] | dagPath | The dag path to the object. |
[out] | ReturnStatus | Status code |
MItGeometry | ( | const MDagPath & | dagPath, |
MObject & | component, | ||
MStatus * | ReturnStatus =
NULL |
||
) |
Constructor.
This constructor is used to iterate over the points/CVs/vertices of a dag object given a particular dag path. The iteration will be over the points/CVs/Vertices specified by the component argument. If the component is null then the iteration will be over the entire object.
[in] | dagPath | The dag path to the object. |
[in] | component | The components of the object to iterate over. If this is null then the iteration will be over all components of the object. |
[out] | ReturnStatus | Status code |
MItGeometry | ( | MObject & | dagObject, |
MStatus * | ReturnStatus =
NULL |
||
) |
Constructor.
This constructor is used to iterate over all of the points/CV/vertices of the given dag object. Since there is no path information passed into this constructor world space operations will not be possible.
[in] | dagObject | The DAG object to iterate. |
[out] | ReturnStatus | Status code |
MItGeometry | ( | MDataHandle & | dataHandle, |
unsigned int | groupId, | ||
bool | readOnly = true , |
||
MStatus * | ReturnStatus =
NULL |
||
) |
Constructor.
This constructor is used when iterating from within the compute() method of a node. The point/CV/vertex components of the specified group within the geometry data that is pointed to by the dataHandle will be iterated. If readOnly mode is set to false, the setPosition method can be utilized.
[in] | dataHandle | The dataHandle pointing to the geometry data. |
[in] | groupId | The id of the group whose components will be iterated. |
[in] | readOnly | If false you will be allowed to modify the geometry position data during the iteration. |
[out] | ReturnStatus | Status code |
MItGeometry | ( | MDataHandle & | dataHandle, |
bool | readOnly = true , |
||
MStatus * | ReturnStatus =
NULL |
||
) |
Constructor.
This constructor is used when iterating from within the compute() method of a node. The point/CV/vertex components of the geometry data pointed to by the dataHandle will be iterated. If readOnly mode is set to false, the setPosition method can be utilized.
[in] | dataHandle | The dataHandle pointing to the geometry data. |
[in] | readOnly | If false you will be allowed to modify the geometry position data during the iteration. |
[out] | ReturnStatus | Status code |
~MItGeometry | ( | ) | [virtual] |
Class destructor.
Deallocates memory used by this iterator.
bool isDone | ( | MStatus * | ReturnStatus =
NULL |
) | const |
Returns true if the iteration is finished, i.e.
there are no more components to iterate on.
[out] | ReturnStatus | Status code |
MStatus next | ( | ) |
Advance to the next component in the iteration.
If the iterator is already at the last component then this method has no effect. Use isDone to determine if the iterator is at the last component.
MPoint position | ( | MSpace::Space | space =
MSpace::kObject , |
MStatus * | ReturnStatus =
NULL |
||
) | const |
Return the position of the current point/CV/vertex component.
[in] | space | The transformation space in which the operation is done |
[out] | ReturnStatus | Status code |
MStatus setPosition | ( | const MPoint & | pt, |
MSpace::Space | space =
MSpace::kObject |
||
) |
Set the position of the current point/CV/vertex.
[in] | pt | New position. |
[in] | space | The transformation space in which the operation is done. |
Return the weight of the current point/CV/vertex component.
[out] | ReturnStatus | Status code |
int index | ( | MStatus * | ReturnStatus =
NULL |
) | const |
This method returns the index of the current point/CV/vertex component in the iteration.
[out] | ReturnStatus | Status code |
This method is obsolete.
This method returns the current component in the iteration.
[out] | ReturnStatus | Status code |
This method returns the current component in the iteration.
[out] | ReturnStatus | Status code |
int count | ( | MStatus * | ReturnStatus =
NULL |
) | const |
Return the number of items in this iteration.
This number will always be at least as large as the number of items, however in some cases it may be larger. It is useful if allocating space in an array to hold the results, since it will always be of sufficient size. If the exact number of items is required, use the exactCount method instead. The exactCount method is however significantly slower than this method.
[out] | ReturnStatus | Status code |
int exactCount | ( | MStatus * | ReturnStatus =
NULL |
) |
Return the exact number of items in this iteration.
This method is significantly slower than the count() method, so use if only if the precise number is required.
[out] | ReturnStatus | Status code |
MStatus reset | ( | ) |
Reset the iterator to the first component.
MStatus allPositions | ( | MPointArray & | points, |
MSpace::Space | space =
MSpace::kObject |
||
) | const |
Return the position of all the points/CVs/vertices.
This operation is faster than using the iterator to get values one by one, but uses more memory as it requires an array to hold all the values to be returned.
[out] | points | Storage for positions |
[in] | space | The transformation space in which the operation is done |
MStatus setAllPositions | ( | const MPointArray & | pt, |
MSpace::Space | space =
MSpace::kObject |
||
) |
Set the position of all the points/CVs/vertices at once.
This operation is faster than using the iterator to set values one by one, but uses more memory as it requires an array to hold all the values to be set.
[in] | pt | An array containing all the positions to be set |
[in] | space | The transformation space in which the operation is done |
const char * className | ( | ) | [static] |