Share via


SCNMatrix4.Transpose Method

Definition

Overloads

Name Description
Transpose(SCNMatrix4)

Calculate the transpose of the given matrix

Transpose()

Converts this instance into its transpose.

Transpose(SCNMatrix4, SCNMatrix4)

Calculate the transpose of the given matrix

Transpose(SCNMatrix4)

Calculate the transpose of the given matrix

public static SceneKit.SCNMatrix4 Transpose(SceneKit.SCNMatrix4 mat);
static member Transpose : SceneKit.SCNMatrix4 -> SceneKit.SCNMatrix4

Parameters

mat
SCNMatrix4

The matrix to transpose

Returns

The transpose of the given matrix

Applies to

Transpose()

Converts this instance into its transpose.

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

Applies to

Transpose(SCNMatrix4, SCNMatrix4)

Calculate the transpose of the given matrix

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

Parameters

mat
SCNMatrix4

The matrix to transpose

result
SCNMatrix4

The result of the calculation

Applies to