The MIntArray class provides an array of integer elements using a common array interface and value semantics. See Working with M*Array Classes for more details.
Constructor & Destructor Documentation
OpenMaya.MIntArray.__init__
(
)
Initialize self. See help(type(self)) for accurate signature.
Member Function Documentation
OpenMaya.MIntArray.__add__
(
)
Return self+value.
OpenMaya.MIntArray.__contains__
(
)
Return key in self.
OpenMaya.MIntArray.__delitem__
(
)
Delete self[key].
OpenMaya.MIntArray.__getitem__
(
)
Return self[key].
OpenMaya.MIntArray.__iadd__
(
)
Implement self+=value.
OpenMaya.MIntArray.__imul__
(
)
Implement self*=value.
OpenMaya.MIntArray.__len__
(
)
Return len(self).
OpenMaya.MIntArray.__mul__
(
)
Return self*value.
OpenMaya.MIntArray.__new__
(
)
static
Create and return a new object. See help(type) for accurate signature.
OpenMaya.MIntArray.__repr__
(
)
Return repr(self).
OpenMaya.MIntArray.__rmul__
(
)
Return value*self.
OpenMaya.MIntArray.__setitem__
(
)
Set self[key] to value.
OpenMaya.MIntArray.__str__
(
)
Return str(self).
OpenMaya.MIntArray.append
(
)
Add a value to the end of the array.
OpenMaya.MIntArray.clear
(
)
Remove all elements from the array.
OpenMaya.MIntArray.copy
(
)
Replace the array contents with that of another or of a compatible Python sequence.
OpenMaya.MIntArray.insert
(
)
Insert a new value into the array at the given index.
OpenMaya.MIntArray.remove
(
)
Remove an element from the array.
OpenMaya.MIntArray.setLength
(
)
Grow or shrink the array to contain a specific number of elements.
Property Documentation
OpenMaya.MIntArray.sizeIncrement
static
Number of elements by which to grow the array when necessary.