Matrix.PostScale 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
PostScale(Single, Single, Single, Single) |
Postconcats the matrix with the specified scale. |
PostScale(Single, Single) |
Postconcats the matrix with the specified scale. |
PostScale(Single, Single, Single, Single)
Postconcats the matrix with the specified scale.
[Android.Runtime.Register("postScale", "(FFFF)Z", "GetPostScale_FFFFHandler")]
public virtual bool PostScale (float sx, float sy, float px, float py);
[<Android.Runtime.Register("postScale", "(FFFF)Z", "GetPostScale_FFFFHandler")>]
abstract member PostScale : single * single * single * single -> bool
override this.PostScale : single * single * single * single -> bool
Parameters
- sx
- Single
- sy
- Single
- px
- Single
- py
- Single
Returns
- Attributes
Remarks
Postconcats the matrix with the specified scale. M' = S(sx, sy, px, py) * M
Java documentation for android.graphics.Matrix.postScale(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
PostScale(Single, Single)
Postconcats the matrix with the specified scale.
[Android.Runtime.Register("postScale", "(FF)Z", "GetPostScale_FFHandler")]
public virtual bool PostScale (float sx, float sy);
[<Android.Runtime.Register("postScale", "(FF)Z", "GetPostScale_FFHandler")>]
abstract member PostScale : single * single -> bool
override this.PostScale : single * single -> bool
Parameters
- sx
- Single
- sy
- Single
Returns
- Attributes
Remarks
Postconcats the matrix with the specified scale. M' = S(sx, sy) * M
Java documentation for android.graphics.Matrix.postScale(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.