Matrix4d constructor (1 of 3)
Creates a new Matrix4d instance with an identity matrix.
public Matrix4d()
See Also
- class Matrix4d
- namespace Autodesk.DataExchange.Models.Math
Matrix4d constructor (2 of 3)
Creates a new Matrix4d instance with a specified array of values.
public Matrix4d(float[] values)
parameter | description |
---|---|
values | An array of 16 float values representing the elements of the matrix. |
Exceptions
exception | condition |
---|---|
ArgumentException | Thrown when the array does not have 16 elements. |
See Also
- class Matrix4d
- namespace Autodesk.DataExchange.Models.Math
Matrix4d constructor (3 of 3)
Creates a new Matrix4d instance with the specified matrix elements.
public Matrix4d(float m11, float m12, float m13, float m14, float m21, float m22, float m23,
float m24, float m31, float m32, float m33, float m34, float m41, float m42, float m43,
float m44)
parameter | description |
---|---|
m11 | The value for the first row, first column of the matrix. |
m12 | The value for the first row, second column of the matrix. |
See Also
- class Matrix4d
- namespace Autodesk.DataExchange.Models.Math