StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/svg-path-bounds/node_modules/normalize-svg-path
Angelos Chatzimparmpas e069030893 fix the frontend 4 years ago
..
.eslintrc.json fix the frontend 4 years ago
.npmignore fix the frontend 4 years ago
.travis.yml fix the frontend 4 years ago
index.js fix the frontend 4 years ago
license.md fix the frontend 4 years ago
package.json fix the frontend 4 years ago
readme.md fix the frontend 4 years ago
test.js fix the frontend 4 years ago

readme.md

normalize-svg-path build

Convert all segments in a path to curves. Usefull if you intend to animate one shape to another. By defining all segments with curves instead of a mix of lines, arcs, and curves tweening becomes much simpler. It could also help you rewrite your SVG code according to the principles of narcissistic design.

Usage

npm install normalize-svg-path

var parse = require('parse-svg-path')
var abs = require('abs-svg-path')
var normalize = require('normalize-svg-path')

var segments = normalize(abs(parse('M0 0L10 10A10 10 0 0 0 20 20Z')))

API

normalize(path)

Translate each segment in path to an equivalent cubic bézier curve. The input path must be absolute.

normalize([['L',1,2]]) // => [['C',0,0,1,2,1,2]]