React component for drawing SVG path through set of points, rendering straight lines where possible and smooth corners in other cases
npm install react-svg-pathlineReact component for drawing SVG path through set of points, smoothing the corners
SVG polyline is the simplest option for rendering "path" line through set of known points but it gives you a "broken" line with sharp corners.
Using SVG path you can get smooth corners but it requires adding more points to original set.
This component helps with rendering SVG path by generating correct SVG data from original set of points, producing "smooth path line" as result.
So instead of this:
``html`
You get this:
`javascript
import React from 'react'
import {PathLine} from 'react-svg-pathline'
export class MyComponent extends React.Component {
render() (
)
}
`
Requires nodejs.
`sh`
$ npm install react-svg-pathline
`sh``
$ npm i && npm i react react-dom && npm start
Open a browser at localhost:8080