Beispiel #1
0
 public void DrawArc(
     float x,
     float y,
     float width,
     float height,
     float startAngle,
     float stopAngle,
     ArcMode mode = ArcMode.Pie,
     uint detail  = Arc.DEFAULT_DETAIL
     )
 {
     _jsRuntime.InvokeVoid(
         _p5InvokeFunction,
         "arc",
         x,
         y,
         width,
         height,
         startAngle,
         stopAngle,
         Arc.ArcModeToString(mode),
         detail
         );
 }