Add TryParseSvgPath functionality #205
-
I think it would be an invaluable feature for our We could add a method with the following signature. bool TryParseSvgPath(ReadonlySpan<char> path, out bool value); We can use the Skia Note. We follow the System.Drawing API model for our |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
FYI the |
Beta Was this translation helpful? Give feedback.
FYI the
BaseGlyphBuilder
works in that same builder model with theMoveTo
/LineTo
style so that code could probably be hoisted into a shared component/PathBuilder wrapper type that exposes that API publicly and we would just utilise it in the glyph builder rather than implementing it there directly.