Interface ArcContext

An interface for the arc() method of the CanvasPathMethods API.

interface ArcContext {
    arc(x, y, radius, startAngle, endAngle, counterclockwise?): void;
}

Methods

Methods

  • arc() method of the CanvasPathMethods API.

    Parameters

    • x: number
    • y: number
    • radius: number
    • startAngle: number
    • endAngle: number
    • Optional counterclockwise: boolean

    Returns void