Python API 2.0 Reference
OpenMaya.MIntArray Class Reference
+ Inheritance diagram for OpenMaya.MIntArray:

Public Member Functions

def __add__ ()
 
def __contains__ ()
 
def __delitem__ ()
 
def __getitem__ ()
 
def __iadd__ ()
 
def __imul__ ()
 
def __init__ ()
 
def __len__ ()
 
def __mul__ ()
 
def __repr__ ()
 
def __rmul__ ()
 
def __setitem__ ()
 
def __str__ ()
 
def append ()
 
def clear ()
 
def copy ()
 
def insert ()
 
def remove ()
 
def setLength ()
 

Static Public Member Functions

def __new__ ()
 

Properties

 sizeIncrement = property(...)
 

Detailed Description

Array of int values.

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

def OpenMaya.MIntArray.__init__ ( )
Initialize self.  See help(type(self)) for accurate signature.

Member Function Documentation

def OpenMaya.MIntArray.__add__ ( )
Return self+value.
def OpenMaya.MIntArray.__contains__ ( )
Return key in self.
def OpenMaya.MIntArray.__delitem__ ( )
Delete self[key].
def OpenMaya.MIntArray.__getitem__ ( )
Return self[key].
def OpenMaya.MIntArray.__iadd__ ( )
Implement self+=value.
def OpenMaya.MIntArray.__imul__ ( )
Implement self*=value.
def OpenMaya.MIntArray.__len__ ( )
Return len(self).
def OpenMaya.MIntArray.__mul__ ( )
Return self*value.
def OpenMaya.MIntArray.__new__ ( )
static
Create and return a new object.  See help(type) for accurate signature.
def OpenMaya.MIntArray.__repr__ ( )
Return repr(self).
def OpenMaya.MIntArray.__rmul__ ( )
Return value*self.
def OpenMaya.MIntArray.__setitem__ ( )
Set self[key] to value.
def OpenMaya.MIntArray.__str__ ( )
Return str(self).
def OpenMaya.MIntArray.append ( )
Add a value to the end of the array.
def OpenMaya.MIntArray.clear ( )
Remove all elements from the array.
def OpenMaya.MIntArray.copy ( )
Replace the array contents with that of another or of a compatible Python sequence.
def OpenMaya.MIntArray.insert ( )
Insert a new value into the array at the given index.
def OpenMaya.MIntArray.remove ( )
Remove an element from the array.
def OpenMaya.MIntArray.setLength ( )
Grow or shrink the array to contain a specific number of elements.

Property Documentation

OpenMaya.MIntArray.sizeIncrement = property(...)
static
 Number of elements by which to grow the array when necessary.