Matrix.PostSkew Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
PostSkew(Single, Single) |
Postconcats the matrix with the specified skew. |
PostSkew(Single, Single, Single, Single) |
Postconcats the matrix with the specified skew. |
PostSkew(Single, Single)
Postconcats the matrix with the specified skew.
[Android.Runtime.Register("postSkew", "(FF)Z", "GetPostSkew_FFHandler")]
public virtual bool PostSkew (float kx, float ky);
[<Android.Runtime.Register("postSkew", "(FF)Z", "GetPostSkew_FFHandler")>]
abstract member PostSkew : single * single -> bool
override this.PostSkew : single * single -> bool
Parameters
- kx
- Single
- ky
- Single
Returns
- Attributes
Remarks
Postconcats the matrix with the specified skew. M' = K(kx, ky) * M
Java documentation for android.graphics.Matrix.postSkew(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
PostSkew(Single, Single, Single, Single)
Postconcats the matrix with the specified skew.
[Android.Runtime.Register("postSkew", "(FFFF)Z", "GetPostSkew_FFFFHandler")]
public virtual bool PostSkew (float kx, float ky, float px, float py);
[<Android.Runtime.Register("postSkew", "(FFFF)Z", "GetPostSkew_FFFFHandler")>]
abstract member PostSkew : single * single * single * single -> bool
override this.PostSkew : single * single * single * single -> bool
Parameters
- kx
- Single
- ky
- Single
- px
- Single
- py
- Single
Returns
- Attributes
Remarks
Postconcats the matrix with the specified skew. M' = K(kx, ky, px, py) * M
Java documentation for android.graphics.Matrix.postSkew(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.