The Open Toolkit library
1.0
|
Represents a 2x3 matrix. More...
Inherits IEquatable< Matrix2x3 >.
Public Member Functions | |
Matrix2x3 (Vector3 row0, Vector3 row1) | |
Constructs a new instance. More... | |
Matrix2x3 (float m00, float m01, float m02, float m10, float m11, float m12) | |
Constructs a new instance More... | |
override string | ToString () |
Returns a System.String that represents the current Matrix2x3. More... | |
override int | GetHashCode () |
Returns the hashcode for this instance. More... | |
override bool | Equals (object obj) |
Indicates whether this instance and a specified object are equal. More... | |
bool | Equals (Matrix2x3 other) |
Indicates whether the current matrix is equal to another matrix. More... | |
Static Public Member Functions | |
static void | CreateRotation (float angle, out Matrix2x3 result) |
Builds a rotation matrix. More... | |
static Matrix2x3 | CreateRotation (float angle) |
Builds a rotation matrix. More... | |
static void | CreateScale (float scale, out Matrix2x3 result) |
Creates a scale matrix. More... | |
static Matrix2x3 | CreateScale (float scale) |
Creates a scale matrix. More... | |
static void | CreateScale (Vector2 scale, out Matrix2x3 result) |
Creates a scale matrix. More... | |
static Matrix2x3 | CreateScale (Vector2 scale) |
Creates a scale matrix. More... | |
static void | CreateScale (float x, float y, out Matrix2x3 result) |
Creates a scale matrix. More... | |
static Matrix2x3 | CreateScale (float x, float y) |
Creates a scale matrix. More... | |
static void | Mult (ref Matrix2x3 left, float right, out Matrix2x3 result) |
Multiplies and instance by a scalar. More... | |
static Matrix2x3 | Mult (Matrix2x3 left, float right) |
Multiplies and instance by a scalar. More... | |
static void | Mult (ref Matrix2x3 left, ref Matrix3x2 right, out Matrix2 result) |
Multiplies two instances. More... | |
static Matrix2 | Mult (Matrix2x3 left, Matrix3x2 right) |
Multiplies two instances. More... | |
static void | Mult (ref Matrix2x3 left, ref Matrix3 right, out Matrix2x3 result) |
Multiplies two instances. More... | |
static Matrix2x3 | Mult (Matrix2x3 left, Matrix3 right) |
Multiplies two instances. More... | |
static void | Mult (ref Matrix2x3 left, ref Matrix3x4 right, out Matrix2x4 result) |
Multiplies two instances. More... | |
static Matrix2x4 | Mult (Matrix2x3 left, Matrix3x4 right) |
Multiplies two instances. More... | |
static void | Add (ref Matrix2x3 left, ref Matrix2x3 right, out Matrix2x3 result) |
Adds two instances. More... | |
static Matrix2x3 | Add (Matrix2x3 left, Matrix2x3 right) |
Adds two instances. More... | |
static void | Subtract (ref Matrix2x3 left, ref Matrix2x3 right, out Matrix2x3 result) |
Subtracts two instances. More... | |
static Matrix2x3 | Subtract (Matrix2x3 left, Matrix2x3 right) |
Subtracts two instances. More... | |
static void | Transpose (ref Matrix2x3 mat, out Matrix3x2 result) |
Calculate the transpose of the given matrix. More... | |
static Matrix3x2 | Transpose (Matrix2x3 mat) |
Calculate the transpose of the given matrix. More... | |
static Matrix2x3 | operator* (float left, Matrix2x3 right) |
Scalar multiplication. More... | |
static Matrix2x3 | operator* (Matrix2x3 left, float right) |
Scalar multiplication. More... | |
static Matrix2 | operator* (Matrix2x3 left, Matrix3x2 right) |
Matrix multiplication More... | |
static Matrix2x3 | operator* (Matrix2x3 left, Matrix3 right) |
Matrix multiplication More... | |
static Matrix2x4 | operator* (Matrix2x3 left, Matrix3x4 right) |
Matrix multiplication More... | |
static Matrix2x3 | operator+ (Matrix2x3 left, Matrix2x3 right) |
Matrix addition More... | |
static Matrix2x3 | operator- (Matrix2x3 left, Matrix2x3 right) |
Matrix subtraction More... | |
static bool | operator== (Matrix2x3 left, Matrix2x3 right) |
Compares two instances for equality. More... | |
static bool | operator!= (Matrix2x3 left, Matrix2x3 right) |
Compares two instances for inequality. More... | |
Public Attributes | |
Vector3 | Row0 |
Top row of the matrix. More... | |
Vector3 | Row1 |
Bottom row of the matrix. More... | |
Static Public Attributes | |
static readonly Matrix2x3 | Zero = new Matrix2x3(Vector3.Zero, Vector3.Zero) |
The zero matrix. More... | |
Properties | |
Vector2 | Column0 [get, set] |
Gets or sets the first column of this matrix. More... | |
Vector2 | Column1 [get, set] |
Gets or sets the second column of this matrix. More... | |
Vector2 | Column2 [get, set] |
Gets or sets the third column of this matrix. More... | |
float | M11 [get, set] |
Gets or sets the value at row 1, column 1 of this instance. More... | |
float | M12 [get, set] |
Gets or sets the value at row 1, column 2 of this instance. More... | |
float | M13 [get, set] |
Gets or sets the value at row 1, column 3 of this instance. More... | |
float | M21 [get, set] |
Gets or sets the value at row 2, column 1 of this instance. More... | |
float | M22 [get, set] |
Gets or sets the value at row 2, column 2 of this instance. More... | |
float | M23 [get, set] |
Gets or sets the value at row 2, column 3 of this instance. More... | |
Vector2 | Diagonal [get, set] |
Gets or sets the values along the main diagonal of the matrix. More... | |
float | Trace [get] |
Gets the trace of the matrix, the sum of the values along the diagonal. More... | |
float | this[int rowIndex, int columnIndex] [get, set] |
Gets or sets the value at a specified row and column. More... | |
Represents a 2x3 matrix.
Constructs a new instance.
row0 | Top row of the matrix. |
row1 | Bottom row of the matrix. |
OpenTK.Matrix2x3.Matrix2x3 | ( | float | m00, |
float | m01, | ||
float | m02, | ||
float | m10, | ||
float | m11, | ||
float | m12 | ||
) |
Constructs a new instance
m00 | First item of the first row of the matrix. |
m01 | Second item of the first row of the matrix. |
m02 | Third item of the first row of the matrix. |
m10 | First item of the second row of the matrix. |
m11 | Second item of the second row of the matrix. |
m12 | Third item of the second row of the matrix. |
|
static |
Adds two instances.
left | The left operand of the addition. |
right | The right operand of the addition. |
result | A new instance that is the result of the addition. |
Adds two instances.
left | The left operand of the addition. |
right | The right operand of the addition. |
|
static |
Builds a rotation matrix.
angle | The counter-clockwise angle in radians. |
result | The resulting Matrix2x3 instance. |
|
static |
Builds a rotation matrix.
angle | The counter-clockwise angle in radians. |
|
static |
Creates a scale matrix.
scale | Single scale factor for the x, y, and z axes. |
result | A scale matrix. |
|
static |
Creates a scale matrix.
scale | Single scale factor for the x and y axes. |
Creates a scale matrix.
scale | Scale factors for the x and y axes. |
result | A scale matrix. |
Creates a scale matrix.
scale | Scale factors for the x and y axes. |
|
static |
Creates a scale matrix.
x | Scale factor for the x axis. |
y | Scale factor for the y axis. |
result | A scale matrix. |
|
static |
Creates a scale matrix.
x | Scale factor for the x axis. |
y | Scale factor for the y axis. |
override bool OpenTK.Matrix2x3.Equals | ( | object | obj | ) |
Indicates whether this instance and a specified object are equal.
obj | The object to compare tresult. |
bool OpenTK.Matrix2x3.Equals | ( | Matrix2x3 | other | ) |
Indicates whether the current matrix is equal to another matrix.
other | An matrix to compare with this matrix. |
override int OpenTK.Matrix2x3.GetHashCode | ( | ) |
Returns the hashcode for this instance.
Multiplies and instance by a scalar.
left | The left operand of the multiplication. |
right | The right operand of the multiplication. |
result | A new instance that is the result of the multiplication. |
Multiplies and instance by a scalar.
left | The left operand of the multiplication. |
right | The right operand of the multiplication. |
|
static |
Multiplies two instances.
left | The left operand of the multiplication. |
right | The right operand of the multiplication. |
result | A new instance that is the result of the multiplication. |
Multiplies two instances.
left | The left operand of the multiplication. |
right | The right operand of the multiplication. |
|
static |
Multiplies two instances.
left | The left operand of the multiplication. |
right | The right operand of the multiplication. |
result | A new instance that is the result of the multiplication. |
Multiplies two instances.
left | The left operand of the multiplication. |
right | The right operand of the multiplication. |
|
static |
Multiplies two instances.
left | The left operand of the multiplication. |
right | The right operand of the multiplication. |
result | A new instance that is the result of the multiplication. |
Multiplies two instances.
left | The left operand of the multiplication. |
right | The right operand of the multiplication. |
Compares two instances for inequality.
left | The first instance. |
right | The second instance. |
Scalar multiplication.
left | left-hand operand |
right | right-hand operand |
Scalar multiplication.
left | left-hand operand |
right | right-hand operand |
Matrix multiplication
left | left-hand operand |
right | right-hand operand |
Matrix multiplication
left | left-hand operand |
right | right-hand operand |
Matrix multiplication
left | left-hand operand |
right | right-hand operand |
Matrix addition
left | left-hand operand |
right | right-hand operand |
Matrix subtraction
left | left-hand operand |
right | right-hand operand |
Compares two instances for equality.
left | The first instance. |
right | The second instance. |
|
static |
Subtracts two instances.
left | The left operand of the subtraction. |
right | The right operand of the subtraction. |
result | A new instance that is the result of the subtraction. |
Subtracts two instances.
left | The left operand of the subtraction. |
right | The right operand of the subtraction. |
override string OpenTK.Matrix2x3.ToString | ( | ) |
Returns a System.String that represents the current Matrix2x3.
Calculate the transpose of the given matrix.
mat | The matrix to transpose. |
result | The transpose of the given matrix. |
Calculate the transpose of the given matrix.
mat | The matrix to transpose. |
Vector3 OpenTK.Matrix2x3.Row0 |
Top row of the matrix.
Vector3 OpenTK.Matrix2x3.Row1 |
Bottom row of the matrix.
The zero matrix.
|
getset |
Gets or sets the first column of this matrix.
|
getset |
Gets or sets the second column of this matrix.
|
getset |
Gets or sets the third column of this matrix.
|
getset |
Gets or sets the values along the main diagonal of the matrix.
|
getset |
Gets or sets the value at row 1, column 1 of this instance.
|
getset |
Gets or sets the value at row 1, column 2 of this instance.
|
getset |
Gets or sets the value at row 1, column 3 of this instance.
|
getset |
Gets or sets the value at row 2, column 1 of this instance.
|
getset |
Gets or sets the value at row 2, column 2 of this instance.
|
getset |
Gets or sets the value at row 2, column 3 of this instance.
|
getset |
Gets or sets the value at a specified row and column.
|
get |
Gets the trace of the matrix, the sum of the values along the diagonal.