The MDoubleArray class provides an array of double-precision float elements using a common array interface and value semantics. See Working with M*Array Classes for more details.
Constructor & Destructor Documentation
OpenMaya.MDoubleArray.__init__
(
)
Initialize self. See help(type(self)) for accurate signature.
Member Function Documentation
OpenMaya.MDoubleArray.__add__
(
)
Return self+value.
OpenMaya.MDoubleArray.__contains__
(
)
Return key in self.
OpenMaya.MDoubleArray.__delitem__
(
)
Delete self[key].
OpenMaya.MDoubleArray.__getitem__
(
)
Return self[key].
OpenMaya.MDoubleArray.__iadd__
(
)
Implement self+=value.
OpenMaya.MDoubleArray.__imul__
(
)
Implement self*=value.
OpenMaya.MDoubleArray.__len__
(
)
Return len(self).
OpenMaya.MDoubleArray.__mul__
(
)
Return self*value.
OpenMaya.MDoubleArray.__new__
(
)
static
Create and return a new object. See help(type) for accurate signature.
OpenMaya.MDoubleArray.__repr__
(
)
Return repr(self).
OpenMaya.MDoubleArray.__rmul__
(
)
Return value*self.
OpenMaya.MDoubleArray.__setitem__
(
)
Set self[key] to value.
OpenMaya.MDoubleArray.__str__
(
)
Return str(self).
OpenMaya.MDoubleArray.append
(
)
Add a value to the end of the array.
OpenMaya.MDoubleArray.clear
(
)
Remove all elements from the array.
OpenMaya.MDoubleArray.copy
(
)
Replace the array contents with that of another or of a compatible Python sequence.
OpenMaya.MDoubleArray.insert
(
)
Insert a new value into the array at the given index.
OpenMaya.MDoubleArray.remove
(
)
Remove an element from the array.
OpenMaya.MDoubleArray.setLength
(
)
Grow or shrink the array to contain a specific number of elements.
Property Documentation
OpenMaya.MDoubleArray.sizeIncrement
static
Number of elements by which to grow the array when necessary.