interface ArcContext { arc(x,
y,
radius,
startAngle,
endAngle,
counterclockwise?): void; } Methods
arc
- arc(x, y, radius, startAngle, endAngle, counterclockwise?): void
Parameters
x: number
y: number
radius: number
startAngle: number
endAngle: number
Optional
counterclockwise: boolean
Returns void
An interface for the arc() method of the CanvasPathMethods API.