d3plus-shape
Version:
Fancy SVG shapes for visualizations
23 lines • 1.51 kB
JavaScript
export { default as Image } from "./src/Image.js";
export { default as Shape } from "./src/Shape/Shape.js";
export { default as Area } from "./src/Shape/Area.js";
export { default as Bar } from "./src/Shape/Bar.js";
export { default as Box } from "./src/Shape/Box.js";
export { default as Circle } from "./src/Shape/Circle.js";
export { default as Line } from "./src/Shape/Line.js";
export { default as Path } from "./src/Shape/Path.js";
export { default as Rect } from "./src/Shape/Rect.js";
export { default as Whisker } from "./src/Shape/Whisker.js";
export { default as largestRect } from "./src/geom/largestRect.js";
export { default as lineIntersection } from "./src/geom/lineIntersection.js";
export { default as path2polygon } from "./src/geom/path2polygon.js";
export { default as pointDistance } from "./src/geom/pointDistance.js";
export { default as pointDistanceSquared } from "./src/geom/pointDistanceSquared.js";
export { default as pointRotate } from "./src/geom/pointRotate.js";
export { default as polygonInside } from "./src/geom/polygonInside.js";
export { default as polygonRayCast } from "./src/geom/polygonRayCast.js";
export { default as polygonRotate } from "./src/geom/polygonRotate.js";
export { default as segmentBoxContains } from "./src/geom/segmentBoxContains.js";
export { default as segmentsIntersect } from "./src/geom/segmentsIntersect.js";
export { default as shapeEdgePoint } from "./src/geom/shapeEdgePoint.js";
export { default as simplify } from "./src/geom/simplify.js";