Matrix.PostRotate Method

Definition

Overloads

PostRotate(Single, Single, Single)

Postconcats the matrix with the specified rotation.

PostRotate(Single)

Postconcats the matrix with the specified rotation.

PostRotate(Single, Single, Single)

Postconcats the matrix with the specified rotation.

[Android.Runtime.Register("postRotate", "(FFF)Z", "GetPostRotate_FFFHandler")]
public virtual bool PostRotate (float degrees, float px, float py);
[<Android.Runtime.Register("postRotate", "(FFF)Z", "GetPostRotate_FFFHandler")>]
abstract member PostRotate : single * single * single -> bool
override this.PostRotate : single * single * single -> bool

Parameters

degrees
Single
px
Single
py
Single

Returns

Attributes

Remarks

Postconcats the matrix with the specified rotation. M' = R(degrees, px, py) * M

Java documentation for android.graphics.Matrix.postRotate(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

PostRotate(Single)

Postconcats the matrix with the specified rotation.

[Android.Runtime.Register("postRotate", "(F)Z", "GetPostRotate_FHandler")]
public virtual bool PostRotate (float degrees);
[<Android.Runtime.Register("postRotate", "(F)Z", "GetPostRotate_FHandler")>]
abstract member PostRotate : single -> bool
override this.PostRotate : single -> bool

Parameters

degrees
Single

Returns

Attributes

Remarks

Postconcats the matrix with the specified rotation. M' = R(degrees) * M

Java documentation for android.graphics.Matrix.postRotate(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