Skip to content

michaelrhodes/scale-svg-path

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

scale-svg-path

scale-svg-path scales the position of a parsed SVG path along its X/Y axes. It was extracted from Fontello’s wonderful svgpath toolkit.

Build status

Browser support

Older browsers might require a polyfill for Array.prototype.map.

Install

$ npm install scale-svg-path

API

scale(path, sx [, sy]) // sy = sx if undefined

Example

var parse = require('parse-svg-path')
var scale = require('scale-svg-path')
var serialize = require('serialize-svg-path')

var path = parse('M10 10 L15 15')
var x = scale(path, 0.5)
var xy = scale(path, 0.5, 1.5)

serialize(x)
// => 'M5 5 L7.5 7.5'

serialize(xy)
// => 'M5 15 L7.5 22.5'

License

MIT

About

Scales an SVG path along its X/Y axes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published