$.shape.arc( x, y, w, h, startAngle, endAngle)

Draws an arc with the provided values

  • x : number //
  • y : number //
  • w : number //
  • h : number //
  • startAngle : number //
  • endAngle : number //

Examples

$.use(update);

function update() {
    $.shape.arc(
        20,20, //x,y
        20,20, //w,h
        30,90  //start,end
    );
}