shape-points
Version:
Generate points for simple shapes and curves: arcs, rectangles, rounded rectangles, circles, ellipses, bezierCurveTo, bezierCurveThrough (i.e., bezier curves through specific points)
11 lines (10 loc) • 390 B
JavaScript
/** @module shape-points */
export { rect } from './rect'
export { arc } from './arc'
export { roundedRect } from './roundedRect'
export { line } from './line'
export { circle } from './circle'
export { ellipse } from './ellipse'
export { bezierCurveTo } from './bezierCurveTo'
export { bezierCurveThrough } from './bezierCurveThrough'
export { quadraticCurveTo } from './quadraticCurveTo'