Interface DefaultArcObject

Interface corresponding to the minimum data type assumed by the accessor functions of the Arc generator.

interface DefaultArcObject {
    endAngle: number;
    innerRadius: number;
    outerRadius: number;
    padAngle?: number;
    startAngle: number;
}

Properties

endAngle: number

End angle of arc. The angle is specified in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise.

innerRadius: number

Inner radius of arc.

outerRadius: number

Outer radius of arc.

padAngle?: number

Optional. Pad angle of arc in radians.

startAngle: number

Start angle of arc. The angle is specified in radians, with 0 at -y (12 o’clock) and positive angles proceeding clockwise.