sk_path_arc_to() private method

private sk_path_arc_to ( IntPtr t, float rx, float ry, float xAxisRotate, SKPathArcSize largeArc, SKPathDirection sweep, float x, float y ) : void
t System.IntPtr
rx float
ry float
xAxisRotate float
largeArc SKPathArcSize
sweep SKPathDirection
x float
y float
return void
Ejemplo n.º 1
0
 public void ArcTo(float rx, float ry, float xAxisRotate, SKPathArcSize largeArc, SKPathDirection sweep, float x, float y)
 {
     SkiaApi.sk_path_arc_to(Handle, rx, ry, xAxisRotate, largeArc, sweep, x, y);
 }
Ejemplo n.º 2
0
 public void ArcTo(SKPoint r, float xAxisRotate, SKPathArcSize largeArc, SKPathDirection sweep, SKPoint xy)
 {
     SkiaApi.sk_path_arc_to(Handle, r.X, r.Y, xAxisRotate, largeArc, sweep, xy.X, xy.Y);
 }