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

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 unsigned int values.

The MUintArray class provides an array of unsigned integer elements using a common array interface and value semantics. See Working with M*Array Classes for more details.

 


Constructor & Destructor Documentation

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

Member Function Documentation

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

Property Documentation

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