Name | Type | Description |
---|---|---|
kTolerance | Float | Default tolerance for non-exact equality tests. |
None.
None.
Signature | Parameters | Description |
---|---|---|
MFloatMatrix() | Default constructor. Returns a new matrix set to the identity matrix. | |
MFloatMatrix(src) | src - MFloatMatrix | Copy constructor. Returns a new matrix with the same value as src. |
MFloatMatrix(values) | values - sequence of 16 Float values or four tuples of four Float values each. | Returns a new matrix whose elements are set to those given by values. Values are interpreted in row order, so the first four values make up the first row of the matrix, the second four values the second row of the matrix, and so on. |
Signature | Parameters | Returns | Description |
---|---|---|---|
getElement(row,col) | row - Int
col - Int |
Float | Returns the matrix element specified by row and col. For retrieving single elements this is faster than indexing into the matrix as a sequence because it does not require the creation of an entire row tuple simply to retrieve one element from that row. |
setElement(row,col,value) | row - Int
col - Int value - Float |
New reference to self. | Set the matrix element specified by row and col to the given value. |
transpose() | MFloatMatrix | Returns a new matrix containing this matrix's transpose. | |
setToIdentity() | New reference to self. | Sets this matrix to the identity. | |
setToProduct(left, right) | left - MFloatMatrix
right - MFloatMatrix |
New reference to self. | Sets this matrix to the product of left and right. |
inverse() | MFloatMatrix | Returns a new matrix containing this matrix's nverse. | |
adjoint() | MFloatMatrix | Returns a new matrix containing this matrix's adjoint. | |
homogenize() | MFloatMatrix | Returns a new matrix containing the homogenized version of this matrix. | |
det4x4() | Float | Returns this matrix's determinant. | |
det3x3() | Float | Returns the determinant of the 3x3 matrix formed by the first 3 elements of the first 3 rows of this matrix. | |
isEquivalent(other, tolerance=kTolerance) | other - MFloatMatrix
tol - Float |
Bool | Inexact equality test. Returns True if each element of this matrix is within tolerance of the corresponding element of other. |
None.
An MFloatMatrix object is treated like a list of 16 float values, in row major order. Assignment is supported.
len() returns 16.
Deletion, concatenation, repetition and slicing are not supported.
Operation | Result |
---|---|
MFloatMatrix + MFloatMatrix | Returns a new matrix which is the sum of the two matrices. |
MFloatMatrix += MFloatMatrix | Adds the second matrix to the first and returns a new reference to the first. |
MFloatMatrix - MFloatMatrix | Returns a new matrix which is the result of subtracting the second matrix from the first. |
MFloatMatrix -= MFloatMatrix | Subtracts the second matrix from the first and returns a new reference to the first. |
MFloatMatrix * MFloatMatrix | Returns a new matrix which is the product of the two matrices. |
MFloatMatrix *= MFloatMatrix | Multiplies the first matrix by the second and returns a new reference to the first. |
MFloatMatrix * Float | Returns a new matrix in which all of the elements of the given matrix have been multiplied by the given Float. |
Float * MFloatMatrix | Returns a new matrix in which all of the elements of the given matrix have been multiplied by the given Float. |
MFloatMatrix *= Float | Multiplies all the elements of the matrix by the Float and returns a new reference to the matrix. |
MFloatMatrix == MFloatMatrix | Exact equality test. True if each of the 16 elements of the first matrix is exactly equal to the corresponding element in the second matrix. No tolerance is applied. |
MFloatMatrix != MFloatMatrix | Exact inequality test. True if any of the 16 elements in the first matrix is not exactly equal to the corresponding element in the second matrix. No tolerance is applied. |
All other comparison operators will raise a TypeError exception.
© 2011 Autodesk, Inc. All rights reserved.