Path.AddPath 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
AddPath(Path) |
Add a copy of src to the path |
AddPath(Path, Matrix) |
Add a copy of src to the path, transformed by matrix |
AddPath(Path, Single, Single) |
Add a copy of src to the path, offset by (dx,dy) |
AddPath(Path)
Add a copy of src to the path
[Android.Runtime.Register("addPath", "(Landroid/graphics/Path;)V", "GetAddPath_Landroid_graphics_Path_Handler")]
public virtual void AddPath (Android.Graphics.Path src);
[<Android.Runtime.Register("addPath", "(Landroid/graphics/Path;)V", "GetAddPath_Landroid_graphics_Path_Handler")>]
abstract member AddPath : Android.Graphics.Path -> unit
override this.AddPath : Android.Graphics.Path -> unit
Parameters
- src
- Path
The path that is appended to the current path
- Attributes
Remarks
Add a copy of src to the path
Java documentation for android.graphics.Path.addPath(android.graphics.Path)
.
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
AddPath(Path, Matrix)
Add a copy of src to the path, transformed by matrix
[Android.Runtime.Register("addPath", "(Landroid/graphics/Path;Landroid/graphics/Matrix;)V", "GetAddPath_Landroid_graphics_Path_Landroid_graphics_Matrix_Handler")]
public virtual void AddPath (Android.Graphics.Path src, Android.Graphics.Matrix matrix);
[<Android.Runtime.Register("addPath", "(Landroid/graphics/Path;Landroid/graphics/Matrix;)V", "GetAddPath_Landroid_graphics_Path_Landroid_graphics_Matrix_Handler")>]
abstract member AddPath : Android.Graphics.Path * Android.Graphics.Matrix -> unit
override this.AddPath : Android.Graphics.Path * Android.Graphics.Matrix -> unit
Parameters
- src
- Path
The path to add as a new contour
- matrix
- Matrix
- Attributes
Remarks
Add a copy of src to the path, transformed by 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
AddPath(Path, Single, Single)
Add a copy of src to the path, offset by (dx,dy)
[Android.Runtime.Register("addPath", "(Landroid/graphics/Path;FF)V", "GetAddPath_Landroid_graphics_Path_FFHandler")]
public virtual void AddPath (Android.Graphics.Path src, float dx, float dy);
[<Android.Runtime.Register("addPath", "(Landroid/graphics/Path;FF)V", "GetAddPath_Landroid_graphics_Path_FFHandler")>]
abstract member AddPath : Android.Graphics.Path * single * single -> unit
override this.AddPath : Android.Graphics.Path * single * single -> unit
Parameters
- src
- Path
The path to add as a new contour
- dx
- Single
The amount to translate the path in X as it is added
- dy
- Single
- Attributes
Remarks
Add a copy of src to the path, offset by (dx,dy)
Java documentation for android.graphics.Path.addPath(android.graphics.Path, 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.