mirror of
https://github.com/3b1b/manim.git
synced 2025-11-14 10:27:46 +00:00
Small renaming save_image -> save_final_image, which is more honest
This commit is contained in:
parent
4451e9a265
commit
bbf7cac78c
1 changed files with 2 additions and 2 deletions
|
|
@ -170,7 +170,7 @@ class SceneFileWriter(object):
|
|||
if self.write_to_movie:
|
||||
self.writing_process.stdin.write(frame.tostring())
|
||||
|
||||
def save_image(self, image):
|
||||
def save_final_image(self, image):
|
||||
file_path = self.get_image_file_path()
|
||||
image.save(file_path)
|
||||
self.print_file_ready_message(file_path)
|
||||
|
|
@ -195,7 +195,7 @@ class SceneFileWriter(object):
|
|||
self.combine_movie_files()
|
||||
if self.save_last_frame:
|
||||
self.scene.update_frame(ignore_skipping=True)
|
||||
self.save_image(self.scene.get_image())
|
||||
self.save_final_image(self.scene.get_image())
|
||||
|
||||
def open_movie_pipe(self):
|
||||
file_path = self.get_next_partial_movie_path()
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue