svg-path-contours
v2.0.0
Published
gets 2D contours from an SVG path
Downloads
3,778
Maintainers
Readme
svg-path-contours
Approximates an SVG path into a discrete list of 2D contours (polylines). This is useful for collision detection, intersection, triangulation & WebGL rendering, etc. It does not attempt to clean or optimize the discretized points.
Usage:
var parse = require('parse-svg-path')
var contours = require('svg-path-contours')
var path = 'm10,10C45.812,24.024,45.673,24,45.529,24H31.625
c0.482-3.325,6.464-2.758,8.913-3.155z'
var result = contours(parse(path))
/*
[
[ [10,10], ...etc ]
[ [x, y], ... ]
]
*/
Triangulation example:
var parse = require('parse-svg-path')
var simplify = require('simplify-path')
var contours = require('svg-path-contours')
var triangulate = require('triangulate-contours')
//get a list of polylines/contours from svg contents
var lines = contours(parse(path))
//simplify the contours before triangulation
lines = lines.map(function(path) {
return simplify(path, threshold)
})
//turns into triangles, returns { positions, cells }
var shape = triangulate(lines)
//now draw the simplicial complex with Canvas/WebGL/etc
See demo/index.js for exmaple.
Usage
contours(svg)
Takes parsed SVG contents from parse-svg-path and produces a list of 2D polylines representing the contours of the shape.
License
MIT, see LICENSE.md for details.