Arc shape options object that extends OBJ_Generic (without drawType) and OBJ_FigurePrimitive
drawType
To test examples, append them to the boilerplate
// Simple fillfigure.add({ make: 'arc', angle: Math.PI * 2 / 3, radius: 1,}); Copy
// Simple fillfigure.add({ make: 'arc', angle: Math.PI * 2 / 3, radius: 1,});
// Fill to centerfigure.add({ make: 'arc', angle: Math.PI * 2 / 3, startAngle: Math.PI / 3, radius: 1, fillCenter: true,}); Copy
// Fill to centerfigure.add({ make: 'arc', angle: Math.PI * 2 / 3, startAngle: Math.PI / 3, radius: 1, fillCenter: true,});
// Arc linefigure.add({ make: 'arc', angle: Math.PI / 3, radius: 1, line: { width: 0.05, widthIs: 'inside' },}); Copy
// Arc linefigure.add({ make: 'arc', angle: Math.PI / 3, radius: 1, line: { width: 0.05, widthIs: 'inside' },});
// Arc dashed linefigure.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 Copy
// Arc dashed linefigure.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
Arc shape options object that extends OBJ_Generic (without
drawType) and OBJ_FigurePrimitiveSee
To test examples, append them to the boilerplate
Example
Example
Example
Example