MFnUInt64ArrayData

Base Class

MFnData

Constants

None.

Static Methods

None.

Static Attributes

None.

Constructors

SignatureParametersDescription
MFnUInt64ArrayData()   Default constructor. Returns a new MFnUInt64ArrayData function set with no Maya object attached.
MFnUInt64ArrayData(object) object - MObject Returns a new MFnUInt64ArrayData function set, with the specified Maya object attached.

Object Methods

SignatureParametersReturnsDescription
array()   MUint64Array Returns the encapsulated array as an MUint64Array. For performance reasons the returned array is a live reference to the encapsulated array so changes made to one directly affect the other. The returned array is only valid for as long as the function set retains the same data object. If the function set is destroyed or attached to a different object then the returned array should be discarded. Failure to do so could result in Maya becoming unstable.
copyTo(array) array - MUint64Array Reference to self. Replaces the elements of array with those in the encapsulated array.
create()   MObject Creates a new empty unsigned long array data object, attaches it to the function set and returns an MObject which references it.
create(array) array - MUint64Array or sequence of unsigned ints MObject Creates a new unsigned long array data object, initializes it with the elements from array, attaches it to the function set and returns an MObject which references it.
set(array) array - MUint64Array or sequence of unsigned ints Reference to self. Replaces the elements in the encapsulated array with those from the supplied array.
set(value, index) value - unsigned int or unsigned long
index - unsigned int
Reference to self. Sets the value of the index'th array element.

Object Attributes

None.

Sequence Support

len() returns the number of elements in the encapsulated array.

Indexing and element assignment are supported. Element values are treated as Python longs.

Deletion, concatenation, repetition and slicing are not supported.

Number Support

None.

Comparison Support

None.

© 2011 Autodesk, Inc. All rights reserved.