Path.Transform 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
Transform(Matrix) |
Transform the points in this path by matrix. |
Transform(Matrix, Path) |
Transform the points in this path by matrix, and write the answer into dst. |
Transform(Matrix)
Transform the points in this path by matrix.
[Android.Runtime.Register("transform", "(Landroid/graphics/Matrix;)V", "GetTransform_Landroid_graphics_Matrix_Handler")]
public virtual void Transform (Android.Graphics.Matrix matrix);
[<Android.Runtime.Register("transform", "(Landroid/graphics/Matrix;)V", "GetTransform_Landroid_graphics_Matrix_Handler")>]
abstract member Transform : Android.Graphics.Matrix -> unit
override this.Transform : Android.Graphics.Matrix -> unit
Parameters
- matrix
- Matrix
The matrix to apply to the path
- Attributes
Remarks
Transform the points in this path by matrix.
Java documentation for android.graphics.Path.transform(android.graphics.Matrix)
.
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
Transform(Matrix, Path)
Transform the points in this path by matrix, and write the answer into dst.
[Android.Runtime.Register("transform", "(Landroid/graphics/Matrix;Landroid/graphics/Path;)V", "GetTransform_Landroid_graphics_Matrix_Landroid_graphics_Path_Handler")]
public virtual void Transform (Android.Graphics.Matrix matrix, Android.Graphics.Path? dst);
[<Android.Runtime.Register("transform", "(Landroid/graphics/Matrix;Landroid/graphics/Path;)V", "GetTransform_Landroid_graphics_Matrix_Landroid_graphics_Path_Handler")>]
abstract member Transform : Android.Graphics.Matrix * Android.Graphics.Path -> unit
override this.Transform : Android.Graphics.Matrix * Android.Graphics.Path -> unit
Parameters
- matrix
- Matrix
The matrix to apply to the path
- dst
- Path
The transformed path is written here. If dst is null, then the the original path is modified
- Attributes
Remarks
Transform the points in this path by matrix, and write the answer into dst. If dst is null, then the the original path is modified.
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.