OpenMaya.MMatrixArray Class Reference

OpenMaya.MMatrixArray Class Reference
+ この参照ページは、次の概要トピックと関連付けられています。

Class Description

Array of MMatrix values.
+ Inheritance diagram for OpenMaya.MMatrixArray:

Public Member Functions

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

Properties

 sizeIncrement
 

Constructor & Destructor Documentation

OpenMaya.MMatrixArray.__init__ ( )
x.__init__(...) initializes x; see help(type(x)) for signature

Member Function Documentation

OpenMaya.MMatrixArray.__add__ ( )
x.__add__(y) <==> x+y
OpenMaya.MMatrixArray.__contains__ ( )
x.__contains__(y) <==> y in x
OpenMaya.MMatrixArray.__delitem__ ( )
x.__delitem__(y) <==> del x[y]
OpenMaya.MMatrixArray.__delslice__ ( )
x.__delslice__(i, j) <==> del x[i:j]

Use of negative indices is not supported.
OpenMaya.MMatrixArray.__getitem__ ( )
x.__getitem__(y) <==> x[y]
OpenMaya.MMatrixArray.__getslice__ ( )
x.__getslice__(i, j) <==> x[i:j]

Use of negative indices is not supported.
OpenMaya.MMatrixArray.__iadd__ ( )
x.__iadd__(y) <==> x+=y
OpenMaya.MMatrixArray.__imul__ ( )
x.__imul__(y) <==> x*=y
OpenMaya.MMatrixArray.__len__ ( )
x.__len__() <==> len(x)
OpenMaya.MMatrixArray.__mul__ ( )
x.__mul__(n) <==> x*n
OpenMaya.MMatrixArray.__repr__ ( )
x.__repr__() <==> repr(x)
OpenMaya.MMatrixArray.__rmul__ ( )
x.__rmul__(n) <==> n*x
OpenMaya.MMatrixArray.__setitem__ ( )
x.__setitem__(i, y) <==> x[i]=y
OpenMaya.MMatrixArray.__setslice__ ( )
x.__setslice__(i, j, y) <==> x[i:j]=y

Use  of negative indices is not supported.
OpenMaya.MMatrixArray.__str__ ( )
x.__str__() <==> str(x)
OpenMaya.MMatrixArray.append ( )
Add a value to the end of the array.
OpenMaya.MMatrixArray.clear ( )
Remove all elements from the array.
OpenMaya.MMatrixArray.copy ( )
Replace the array contents with that of another or of a compatible Python sequence.
OpenMaya.MMatrixArray.insert ( )
Insert a new value into the array at the given index.
OpenMaya.MMatrixArray.remove ( )
Remove an element from the array.
OpenMaya.MMatrixArray.setLength ( )
Grow or shrink the array to contain a specific number of elements.

Property Documentation

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