Matrix.TransposeM(Single[], Int32, Single[], Int32) Method

Definition

Transposes a 4 x 4 matrix.

[Android.Runtime.Register("transposeM", "([FI[FI)V", "")]
public static void TransposeM (float[]? mTrans, int mTransOffset, float[]? m, int mOffset);
[<Android.Runtime.Register("transposeM", "([FI[FI)V", "")>]
static member TransposeM : single[] * int * single[] * int -> unit

Parameters

mTrans
Single[]

the array that holds the output transposed matrix

mTransOffset
Int32

an offset into mTrans where the transposed matrix is stored.

m
Single[]

the input array

mOffset
Int32

an offset into m where the input matrix is stored.

Attributes

Remarks

Transposes a 4 x 4 matrix.

mTrans and m must not overlap.

Java documentation for android.opengl.Matrix.transposeM(float[], int, float[], int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to