DMatrix4x2

public double M00

Language: C#

The element at row 0, column 0.

public double M01

Language: C#

The element at row 0, column 1.

public double M10

Language: C#

The element at row 1, column 0.

public double M11

Language: C#

The element at row 1, column 1.

public double M20

Language: C#

The element at row 2, column 0.

public double M21

Language: C#

The element at row 2, column 1.

public double M30

Language: C#

The element at row 3, column 0.

public double M31

Language: C#

The element at row 3, column 1.

public DMatrix4x2(double m00, double m01, double m10, double m11, double m20, double m21, double m30, double m31)

Language: C#

Initializes a new instance of the [] struct.

public DMatrix4x2(DMatrix4x2 other)

Language: C#

Initializes a new instance of the [] struct as copy of another matrix.

public DMatrix2x4 Transpose

Language: C#

Transposes this matrix.

public override string ToString()

Language: C#

Returns a string representation of the matrix.

public static operator DMatrix4x2 +(DMatrix4x2 a, DMatrix4x2 b)

Language: C#

Adds two matrices.

public static operator DMatrix4x2 -(DMatrix4x2 a, DMatrix4x2 b)

Language: C#

Subtracts two matrices.

public static operator DMatrix4x2 *(DMatrix4x2 matrix, double scalar)

Language: C#

Multiplies matrix by a scalar.

public static operator DMatrix4x2 *(double scalar, DMatrix4x2 matrix)

Language: C#

Multiplies matrix by a scalar.

public static operator DMatrix4x2 /(DMatrix4x2 matrix, double scalar)

Language: C#

Divides matrix by a scalar.

public static operator DMatrix4x2 /(double scalar, DMatrix4x2 matrix)

Language: C#

Divides scalar by a matrix.

public static operator DVector4 *(DMatrix4x2 matrix, DVector2 vector)

Language: C#

Multiplies matrix by vector.

public static operator DVector2 *(DVector4 vector, DMatrix4x2 matrix)

Language: C#

Multiplies vector by matrix.

public static operator DMatrix4x2 *(DMatrix4x2 a, DMatrix2x2 b)

Language: C#

Multiplies a DMatrix4x2 by a DMatrix2x2.

public static operator DMatrix4x3 *(DMatrix4x2 a, DMatrix2x3 b)

Language: C#

Multiplies a DMatrix4x2 by a DMatrix2x3.

public static operator DMatrix4x4 *(DMatrix4x2 a, DMatrix2x4 b)

Language: C#

Multiplies a DMatrix4x2 by a DMatrix2x4.

public static operator bool ==(DMatrix4x2 a, DMatrix4x2 b)

Language: C#

Checks if two matrices are equal.

public static operator bool !=(DMatrix4x2 a, DMatrix4x2 b)

Language: C#

Checks if two matrices are not equal.