mirror of
https://github.com/3b1b/manim.git
synced 2025-07-30 21:44:19 +08:00
Changed the defaults for where animations are written, and where images for ImageMobject and SVGMobject are sought after
This commit is contained in:
@ -96,7 +96,7 @@ class Mobject(object):
|
||||
|
||||
def save_image(self, name = None):
|
||||
self.get_image().save(
|
||||
os.path.join(MOVIE_DIR, (name or str(self)) + ".png")
|
||||
os.path.join(ANIMATIONS_DIR, (name or str(self)) + ".png")
|
||||
)
|
||||
|
||||
def copy(self):
|
||||
|
Reference in New Issue
Block a user