If I have a SVG triangle with: d="m 58.966213,150.22576 6.60165,-67.629055 55.267647,39.531725 z", the svg parser submits three Command::Relative. However, the first event should be an Command::Absolute, event, only the following are Command::Relative events.
I.e. I get this:
Move(Relative, Parameters([58.966213, 150.22575, 6.60165, -67.62905, 55.267647, 39.531727]))
Close
What would be correct:
Move(Absolute, Parameters([58.966213, 150.22575]))
Move(Relative, Parameters([6.60165, -67.62905, 55.267647, 39.531727]))
Close
If I have a SVG triangle with:
d="m 58.966213,150.22576 6.60165,-67.629055 55.267647,39.531725 z"
, thesvg
parser submits threeCommand::Relative
. However, the first event should be anCommand::Absolute
, event, only the following areCommand::Relative
events.I.e. I get this:
What would be correct: