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