Python API 2.0 Reference: OpenMaya.MFloatPointArray Class Reference

+ Inheritance diagram for OpenMaya.MFloatPointArray:

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 MFloatPoint values.

The MFloatPointArray class provides an array of MFloatPoint elements using a common array interface and reference semantics. See Working with M*Array Classes for more details.

 


Constructor & Destructor Documentation

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

Member Function Documentation

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

Property Documentation

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