Edit

SKMatrix44.ToColumnMajor Method

Definition

Overloads

Name Description
ToColumnMajor()

Converts the current matrix to a column-major array.

ToColumnMajor(Span<Single>)

Copies the matrix values to a span in column-major order.

ToColumnMajor()

Converts the current matrix to a column-major array.

public readonly float[] ToColumnMajor();

Returns

Single[]

Returns the new column-major array.

Applies to

ToColumnMajor(Span<Single>)

Copies the matrix values to a span in column-major order.

public readonly void ToColumnMajor(Span<float> dst);

Parameters

dst
Span<Single>

A span to receive the 16 matrix values in column-major order.

Applies to