65 lines
2.1 KiB
JavaScript
65 lines
2.1 KiB
JavaScript
import {Geo} from './Geo.js';
|
|
import {Rectangle} from './Rectangle.js';
|
|
import {Ellipse} from './Ellipse.js';
|
|
import {Diamond} from './Diamond.js';
|
|
import {Triangle} from './Triangle.js';
|
|
import {Trapezoid} from './Trapezoid.js';
|
|
import {Rhombus} from './Rhombus.js';
|
|
import {Hexagon} from './Hexagon.js';
|
|
import {Oval} from './Oval.js';
|
|
import {Star} from './Star.js';
|
|
import {ArrowRight} from './ArrowRight.js';
|
|
import {ArrowLeft} from './ArrowLeft.js';
|
|
import {ArrowUp} from './ArrowUp.js';
|
|
import {ArrowDown} from './ArrowDown.js';
|
|
import {XBox} from './XBox.js';
|
|
import {Checkbox} from './Checkbox.js';
|
|
import {Cloud} from './Cloud.js';
|
|
/**
|
|
* Creates a geometric object instance based on the provided annotations.
|
|
*
|
|
* @function createGeoObject
|
|
* @param {Object} annotations - The annotations for the geometric object.
|
|
* @param {Object} [annotations.props] - The properties of the annotations.
|
|
* @param {String} [annotations.props.geo] - Which geometric object to create.
|
|
* @return {Geo} The created geometric object.
|
|
*/
|
|
export function createGeoObject(annotations) {
|
|
switch (annotations.props?.geo) {
|
|
case 'rectangle':
|
|
return new Rectangle(annotations);
|
|
case 'ellipse':
|
|
return new Ellipse(annotations);
|
|
case 'diamond':
|
|
return new Diamond(annotations);
|
|
case 'triangle':
|
|
return new Triangle(annotations);
|
|
case 'trapezoid':
|
|
return new Trapezoid(annotations);
|
|
case 'rhombus':
|
|
return new Rhombus(annotations);
|
|
case 'hexagon':
|
|
return new Hexagon(annotations);
|
|
case 'oval':
|
|
return new Oval(annotations);
|
|
case 'star':
|
|
return new Star(annotations);
|
|
case 'arrow-right':
|
|
return new ArrowRight(annotations);
|
|
case 'arrow-left':
|
|
return new ArrowLeft(annotations);
|
|
case 'arrow-up':
|
|
return new ArrowUp(annotations);
|
|
case 'arrow-down':
|
|
return new ArrowDown(annotations);
|
|
case 'x-box':
|
|
return new XBox(annotations);
|
|
case 'check-box':
|
|
return new Checkbox(annotations);
|
|
case 'cloud':
|
|
return new Cloud(annotations);
|
|
default:
|
|
return new Geo(annotations);
|
|
}
|
|
}
|