Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

Latest commit

 

History

History
18 lines (13 loc) · 728 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 728 Bytes

svg-replace-bezier is a library for replacing bezier curves with line segments

This is accomplished by using svg-path-parse to parse the path, and using a portion of the antigrain geometry library compiled with emscripten to convert the bezier curves to line segments.

example

var replaceBezier = require('svg-replace-bezier');

replaceBezier.d('M100,200 Q100,100 250,200 Q400,300 400,200'); /* outputs 'M100,200 L100.146484375,....' */

npm dependency

npm install svg-replace-bezier

demo