mirror of
https://github.com/ethan-zf/cesium-plot-js.git
synced 2025-06-23 19:17:29 +00:00
44 lines
1.2 KiB
TypeScript
44 lines
1.2 KiB
TypeScript
import FineArrow from './arrow/fine-arrow';
|
|
import AttackArrow from './arrow/attack-arrow';
|
|
import SwallowtailAttackArrow from './arrow/swallowtail-attack-arrow';
|
|
import SquadCombat from './arrow/squad-combat';
|
|
import SwallowtailSquadCombat from './arrow/swallowtail-squad-combat';
|
|
import StraightArrow from './arrow/straight-arrow';
|
|
import CurvedArrow from './arrow/curved-arrow';
|
|
import AssaultDirection from './arrow/assault-direction';
|
|
import DoubleArrow from './arrow/double-arrow';
|
|
import FreehandLine from './line/freehand-line';
|
|
import FreehandPolygon from './polygon/freehand-polygon';
|
|
import Curve from './line/curve';
|
|
import Ellipse from './polygon/ellipse';
|
|
import Lune from './polygon/lune';
|
|
import Reactangle from './polygon/rectangle';
|
|
import Triangle from './polygon/triangle';
|
|
import Polygon from './polygon/polygon';
|
|
import Circle from './polygon/circle';
|
|
import Sector from './polygon/sector';
|
|
|
|
const CesiumPlot = {
|
|
FineArrow,
|
|
AttackArrow,
|
|
SwallowtailAttackArrow,
|
|
SquadCombat,
|
|
SwallowtailSquadCombat,
|
|
StraightArrow,
|
|
CurvedArrow,
|
|
AssaultDirection,
|
|
DoubleArrow,
|
|
FreehandLine,
|
|
FreehandPolygon,
|
|
Curve,
|
|
Ellipse,
|
|
Lune,
|
|
Reactangle,
|
|
Triangle,
|
|
Polygon,
|
|
Circle,
|
|
Sector,
|
|
};
|
|
|
|
export default CesiumPlot;
|