Matrix.PreSkew Method

Definition

Overloads

PreSkew(Single, Single)

Preconcats the matrix with the specified skew.

PreSkew(Single, Single, Single, Single)

Preconcats the matrix with the specified skew.

PreSkew(Single, Single)

Preconcats the matrix with the specified skew.

[Android.Runtime.Register("preSkew", "(FF)Z", "GetPreSkew_FFHandler")]
public virtual bool PreSkew (float kx, float ky);
[<Android.Runtime.Register("preSkew", "(FF)Z", "GetPreSkew_FFHandler")>]
abstract member PreSkew : single * single -> bool
override this.PreSkew : single * single -> bool

Parameters

kx
Single
ky
Single

Returns

Attributes

Remarks

Preconcats the matrix with the specified skew. M' = M * K(kx, ky)

Java documentation for android.graphics.Matrix.preSkew(float, float).

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

PreSkew(Single, Single, Single, Single)

Preconcats the matrix with the specified skew.

[Android.Runtime.Register("preSkew", "(FFFF)Z", "GetPreSkew_FFFFHandler")]
public virtual bool PreSkew (float kx, float ky, float px, float py);
[<Android.Runtime.Register("preSkew", "(FFFF)Z", "GetPreSkew_FFFFHandler")>]
abstract member PreSkew : single * single * single * single -> bool
override this.PreSkew : single * single * single * single -> bool

Parameters

kx
Single
ky
Single
px
Single
py
Single

Returns

Attributes

Remarks

Preconcats the matrix with the specified skew. M' = M * K(kx, ky, px, py)

Java documentation for android.graphics.Matrix.preSkew(float, float, float, float).

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