Casey Duckering
Casey Duckering
Here are two relevant methods where new backends would be added: [`Raster.from_svg()` and `Raster.from_svg_to_file()`](https://github.com/cduck/drawsvg/blob/651c36b7a232b74a0246765589d3519780eb45c1/drawsvg/raster.py#L50)
Thanks for linking @Goldthing. This information might be important to mention in the install section of the readme.
Thanks for the contribution! I will merge as soon as I have some free time to review the code.
Good catch. I will review and merge as soon as I have some free time. On a quick glance it looks like you might have mixed some code from the...
Thanks for opening the issue. Looking at the last line of your example, if I switch t and refl in `merge(t,refl)` it's output matches the last output. Does this match...
There is no Ry gate yet because I didn't need it. Please do give a try implementing it though. I would make the gate format `ry,` e.g. `ry2,0.25` is a...
Good idea. That would simplify the dependencies.
Thanks for opening this issue. I don't have access to a Windows machine to test this but I can give some pointers. Please let me know how you end up...
Great. I think the best solution would be to write a helper function that checks the platform type (Windows vs. other) and does the correct conversion. Then it's easy to...
The endpoints of the `Line` element cannot be animated because `drawsvg.Line` generates an SVG `` tag instead of a `` tag. This could be solved by changing `drawsvg.Line` to use...