* Create a Path object from path string data * http://www.w3.org/TR/SVG/paths.html#PathData * @param {Object} opts Other options
(str, opts)
| 15557 | * @param {Object} opts Other options |
| 15558 | */ |
| 15559 | function createFromString(str, opts) { |
| 15560 | return new Path(createPathOptions(str, opts)); |
| 15561 | } |
| 15562 | |
| 15563 | /** |
| 15564 | * Create a Path class from path string data |
no test coverage detected