1.0.0 • Published 5 years ago

svg-curves v1.0.0

Weekly downloads
2
License
MIT
Repository
-
Last release
5 years ago

SVG Curves

Example

import { createCurve } from 'svg-curves';

const points = [
  { x: 0, y: 400 },
  { x: 100, y: 500 },
  { x: 200, y: 550 },
  { x: 300, y: 400 },
  { x: 400, y: 500 },
  { x: 500, y: 450 },
  { x: 600, y: 450 },
];

const attrs = {
  stroke: 'black',
  strokeWidth: 2
};

const curve = createCurve(points, attrs);

Result

Screenshot

See Example

License

MIT