Render SVG from Draw.io
- Dominant language
- Python
- Stars
- 93.9k
- Forks
- 7.7k
- Avg merge
- 2d 13h
- Merged PRs (30d)
- 4
Description
Hi, I'm trying to display some SVG from Draw.io, but I got some strange results.
I want to use manim for development and programming videos :smile:
The code :
```
class Uml(SVGMobject):
CONFIG = {
"file_name": "/home/necros/Downloads/FormObjects-Models.svg",
"unpack_groups": False
}
class UmlRender(Scene):
def construct(self):
uml = Uml()
uml.scale(5)
self.play(DrawBorderThenFill(uml), run_time=5)
self.wait(5)
```
Expected result :

Actual result :

Exemple file : https://filebin.net/vhs2w1zlwbqeadhv/FormObjects-Models__1_.svg?t=byk639bd
In hope you have any idea to help me.
Regards
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.