sk_path_arc_to_with_points() private method

private sk_path_arc_to_with_points ( IntPtr t, float x1, float y1, float x2, float y2, float radius ) : void
t System.IntPtr
x1 float
y1 float
x2 float
y2 float
radius float
return void
Ejemplo n.º 1
0
 public void ArcTo(float x1, float y1, float x2, float y2, float radius)
 {
     SkiaApi.sk_path_arc_to_with_points(Handle, x1, y1, x2, y2, radius);
 }
Ejemplo n.º 2
0
 public void ArcTo(SKPoint point1, SKPoint point2, float radius)
 {
     SkiaApi.sk_path_arc_to_with_points(Handle, point1.X, point1.Y, point2.X, point2.Y, radius);
 }