Ellipse shape options object that extends OBJ_Generic (without drawType) and OBJ_FigurePrimitive
drawType
To test examples, append them to the boilerplate
// Filled ellipsefigure.add({ name: 'e', make: 'ellipse', height: 1, width: 0.5, sides: 100,}); Copy
// Filled ellipsefigure.add({ name: 'e', make: 'ellipse', height: 1, width: 0.5, sides: 100,});
// Dashed line circlefigure.add({ name: 'e', make: 'ellipse', height: 1, width: 1, sides: 100, line: { width: 0.02, dash: [0.05, 0.02], },}); Copy
// Dashed line circlefigure.add({ name: 'e', make: 'ellipse', height: 1, width: 1, sides: 100, line: { width: 0.02, dash: [0.05, 0.02], },});
// Ellipse gridfigure.add({ name: 'e', make: 'ellipse', height: 0.08, width: 0.2, sides: 20, copy: [ { along: 'x', step: 0.25, num: 5 }, { along: 'y', step: 0.15, num: 5 }, ]});@interface Copy
// Ellipse gridfigure.add({ name: 'e', make: 'ellipse', height: 0.08, width: 0.2, sides: 20, copy: [ { along: 'x', step: 0.25, num: 5 }, { along: 'y', step: 0.15, num: 5 }, ]});@interface
Ellipse shape options object that extends OBJ_Generic (without
drawType) and OBJ_FigurePrimitiveSee
To test examples, append them to the boilerplate
Example
Example
Example