scale-svg-path

Scales an SVG path along its X/Y axes.

Usage no npm install needed!

<script type="module">
  import scaleSvgPath from 'https://cdn.skypack.dev/scale-svg-path';
</script>

README

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