Python API 2.0 Reference: OpenMaya.MFloatArray Class Reference

+ Inheritance diagram for OpenMaya.MFloatArray:

Public Member Functions

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

Static Public Member Functions

__new__ ()
 

Properties

 sizeIncrement
 

Detailed Description

Array of float values.

The MFloatArray class provides an array of single-precision Float elements using a common array interface and value semantics. See Working with M*Array Classes for more details.

 


Constructor & Destructor Documentation

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

Member Function Documentation

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

Property Documentation

OpenMaya.MFloatArray.sizeIncrement
static
 Number of elements by which to grow the array when necessary.