index.js 757 B

12345678910111213141516171819202122
  1. var pathIntersection = require('./path-intersection');
  2. var path2absolute = require('./path2absolute');
  3. var path2curve = require('./path2curve');
  4. var catmullRom2Bezier = require('./catmull-rom2bezier');
  5. module.exports = {
  6. catmullRom2Bezier: catmullRom2Bezier,
  7. catmullRomToBezier: catmullRom2Bezier,
  8. fillPath: require('./fill-path'),
  9. fillPathByDiff: require('./fill-path-by-diff'),
  10. formatPath: require('./format-path'),
  11. intersection: pathIntersection,
  12. pathIntersection: pathIntersection,
  13. parsePathArray: require('./parse-path-array'),
  14. parsePathString: require('./parse-path-string'),
  15. pathToAbsolute: path2absolute,
  16. path2absolute: path2absolute,
  17. pathTocurve: path2curve,
  18. path2curve: path2curve,
  19. rectPath: require('./rect-path')
  20. };