Matrix3D Constructors
Overloads
| Name | Description |
|---|---|
| Matrix3D() | Construction |
| Matrix3D(string matrix) | Construction |
| Matrix3D(float[] matrix) | Contruction |
| Matrix3D(List<float> matrix) | Contruction |
| Matrix3D(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) | Construction |
Matrix3D()
public Matrix3D()
Construction
Matrix3D(string matrix)
public Matrix3D(string matrix)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| matrix | string | String Matrix. Seperator ',' |
Matrix3D(float[] matrix)
public Matrix3D(float[] matrix)
Contruction
Parameters
| Name | Type | Description |
|---|---|---|
| matrix | Single[] | Matrix Array |
Matrix3D(List<float> matrix)
public Matrix3D(List<float> matrix)
Contruction
Parameters
| Name | Type | Description |
|---|---|---|
| matrix | List<float> | Matrix List |
Matrix3D(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)
public Matrix3D(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)
Construction
Parameters
| Name | Type | Description |
|---|---|---|
| m11 | float | Matrix 1.1 |
| m12 | float | Matrix 1.2 |
| m13 | float | Matrix 1.3 |
| m14 | float | Matrix 1.4 |
| m21 | float | Matrix 2.1 |
| m22 | float | Matrix 2.2 |
| m23 | float | Matrix 2.3 |
| m24 | float | Matrix 2.4 |
| m31 | float | Matrix 3.1 |
| m32 | float | Matrix 3.2 |
| m33 | float | Matrix 3.3 |
| m34 | float | Matrix 3.4 |
| m41 | float | Matrix 4.1 |
| m42 | float | Matrix 4.2 |
| m43 | float | Matrix 4.3 |
| m44 | float | Matrix 4.4 |