-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stable API #48
Stable API #48
Conversation
e743b68
to
31dec56
Compare
For now, an example of using the API would be >>> from manimpango import *
>>> l = Layout(markup="<span color='BLUE' font_family='Cursive'>Blue</span>")
>>> r = SVGRenderer('blue.svg', 100, 100, l, move_to=(25,25))
>>> r.render()
True and an SVG file like this would be created. @PhilippImhof does this look good? Any suggestions? |
After implementing Image backend this is done :). |
This looks very nice at the first glance. As it is a very substantial change (and step forward), I would like to take some time to really look at it in details. |
Sure, you could look into this now or later when I complete the image backend. There are many codes that aren't used currently only the image backend will use it. |
Change the whole API into something simple
Also use sphinx_rtd_theme
I think I would something from scratch rather than working on this. So closing. |
I would working over this month on this. For now this is just a draft on how this will look.
Fixes #28
Also, Fixes #37 and Fixes #30