figureone
    Preparing search index...

    Arc shape options object that extends OBJ_Generic (without drawType) and OBJ_FigurePrimitive

    To test examples, append them to the boilerplate

    // Simple fill
    figure.add({
    make: 'arc',
    angle: Math.PI * 2 / 3,
    radius: 1,
    });
    // Fill to center
    figure.add({
    make: 'arc',
    angle: Math.PI * 2 / 3,
    startAngle: Math.PI / 3,
    radius: 1,
    fillCenter: true,
    });
    // Arc line
    figure.add({
    make: 'arc',
    angle: Math.PI / 3,
    radius: 1,
    line: { width: 0.05, widthIs: 'inside' },
    });
    // Arc dashed line
    figure.add({
    make: 'arc',
    angle: Math.PI * 3 / 2,
    radius: 1,
    sides: 100,
    line: { width: 0.05, dash: [0.3, 0.1, 0.1, 0.1] },
    });
    @interface