Python API 2.0 Reference: OpenMaya.MDagPathArray Class Reference
Array of MDagPath values.
The MDagPathArray class provides an array of MDagPath elements using a common array interface and reference semantics. See Working with M*Array Classes for more details.
OpenMaya.MDagPathArray.__init__ |
( |
| ) |
|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
OpenMaya.MDagPathArray.__add__ |
( |
| ) |
|
OpenMaya.MDagPathArray.__contains__ |
( |
| ) |
|
x.__contains__(y) <==> y in x
OpenMaya.MDagPathArray.__delitem__ |
( |
| ) |
|
x.__delitem__(y) <==> del x[y]
OpenMaya.MDagPathArray.__delslice__ |
( |
| ) |
|
x.__delslice__(i, j) <==> del x[i:j]
Use of negative indices is not supported.
OpenMaya.MDagPathArray.__getitem__ |
( |
| ) |
|
x.__getitem__(y) <==> x[y]
OpenMaya.MDagPathArray.__getslice__ |
( |
| ) |
|
x.__getslice__(i, j) <==> x[i:j]
Use of negative indices is not supported.
OpenMaya.MDagPathArray.__iadd__ |
( |
| ) |
|
OpenMaya.MDagPathArray.__imul__ |
( |
| ) |
|
OpenMaya.MDagPathArray.__len__ |
( |
| ) |
|
OpenMaya.MDagPathArray.__mul__ |
( |
| ) |
|
OpenMaya.MDagPathArray.__repr__ |
( |
| ) |
|
x.__repr__() <==> repr(x)
OpenMaya.MDagPathArray.__rmul__ |
( |
| ) |
|
OpenMaya.MDagPathArray.__setitem__ |
( |
| ) |
|
x.__setitem__(i, y) <==> x[i]=y
OpenMaya.MDagPathArray.__setslice__ |
( |
| ) |
|
x.__setslice__(i, j, y) <==> x[i:j]=y
Use of negative indices is not supported.
OpenMaya.MDagPathArray.__str__ |
( |
| ) |
|
OpenMaya.MDagPathArray.append |
( |
| ) |
|
Add a value to the end of the array.
OpenMaya.MDagPathArray.clear |
( |
| ) |
|
Remove all elements from the array.
OpenMaya.MDagPathArray.copy |
( |
| ) |
|
Replace the array contents with that of another or of a compatible Python sequence.
OpenMaya.MDagPathArray.insert |
( |
| ) |
|
Insert a new value into the array at the given index.
OpenMaya.MDagPathArray.remove |
( |
| ) |
|
Remove an element from the array.
OpenMaya.MDagPathArray.setLength |
( |
| ) |
|
Grow or shrink the array to contain a specific number of elements.
OpenMaya.MDagPathArray.sizeIncrement |
|
static |
Number of elements by which to grow the array when necessary.