colinmeinke / svg-points

A specification for storing SVG shape data in Javascript, and some handy conversion functions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Handle multiple command shorthand

colinmeinke opened this issue · comments

This is valid SVG path description:

M100,100L200,200,300,300C300,350,350,400,400,400,400,450,450,500,500,500

Which is equivalent to:

M100,100L200,200L300,300C300,350,350,400,400,400C400,450,450,500,500,500

Currently SVG shapes won't handle this.