Matrix4.Transpose Method

Definition

Overloads

Transpose()

Calculates the transpose of this instance.

Transpose(Matrix4)
Transpose(Matrix4, Matrix4)

Calculate the transpose of the given matrix

Transpose()

Calculates the transpose of this instance.

public void Transpose ();
member this.Transpose : unit -> unit

Applies to

Transpose(Matrix4)

public static OpenTK.Matrix4 Transpose (OpenTK.Matrix4 mat);
static member Transpose : OpenTK.Matrix4 -> OpenTK.Matrix4

Parameters

mat
Matrix4

Returns

Applies to

Transpose(Matrix4, Matrix4)

Calculate the transpose of the given matrix

public static void Transpose (ref OpenTK.Matrix4 mat, out OpenTK.Matrix4 result);
static member Transpose :  *  -> unit

Parameters

mat
Matrix4

The matrix to transpose

result
Matrix4

The result of the calculation

Applies to