SKMatrix Constructors

Definition

Overloads

SKMatrix(Single[])
SKMatrix(Single, Single, Single, Single, Single, Single, Single, Single, Single)

Creates a new instance of SKMatrix using the specified values.

SKMatrix(Single[])

public SKMatrix (float[] values);

Parameters

values
Single[]

Applies to

SKMatrix(Single, Single, Single, Single, Single, Single, Single, Single, Single)

Creates a new instance of SKMatrix using the specified values.

public SKMatrix (float scaleX, float skewX, float transX, float skewY, float scaleY, float transY, float persp0, float persp1, float persp2);

Parameters

scaleX
Single

The scaling in the x-direction.

skewX
Single

The skew in the x-direction.

transX
Single

The translation in the x-direction.

skewY
Single

The skew in the y-direction.

scaleY
Single

The scaling in the y-direction.

transY
Single

The translation in the y-direction.

persp0
Single

The x-perspective.

persp1
Single

The y-perspective.

persp2
Single

The z-perspective.

Applies to