Matrix4.Transpose

Matrix4.Transpose method

Transposes this instance.

public Matrix4 Transpose()

Return Value

The transposed matrix.

Examples

The following code shows how to transpose a matrix

var t = Matrix4.Translate(0, 10, 9);
var mat = t.Transpose();
Console.WriteLine($"Transposed Matrix: {mat}");

See Also