mirror of
https://github.com/3b1b/manim.git
synced 2025-08-02 11:03:03 +08:00
Resolved a few merge conflicts
This commit is contained in:
@ -32,8 +32,12 @@ class Scene(object):
|
||||
"save_frames" : False,
|
||||
"save_pngs" : False,
|
||||
"pngs_mode" : "RGBA",
|
||||
<<<<<<< Updated upstream
|
||||
"output_directory" : ANIMATIONS_DIR,
|
||||
"movie_file_extension" : ".mp4",
|
||||
=======
|
||||
"output_directory" : MOVIE_DIR,
|
||||
>>>>>>> Stashed changes
|
||||
"name" : None,
|
||||
"always_continually_update" : False,
|
||||
"random_seed" : 0,
|
||||
@ -482,6 +486,8 @@ class Scene(object):
|
||||
|
||||
def preview(self):
|
||||
TkSceneRoot(self)
|
||||
|
||||
def save_image(self, name = None, mode = "RGB", dont_update = False):
|
||||
|
||||
def get_image_file_path(self, name = None, dont_update = False):
|
||||
folder = "images"
|
||||
@ -540,7 +546,6 @@ class Scene(object):
|
||||
'-loglevel', 'error',
|
||||
temp_file_path,
|
||||
]
|
||||
|
||||
# self.writing_process = sp.Popen(command, stdin=sp.PIPE, shell=True)
|
||||
self.writing_process = sp.Popen(command, stdin=sp.PIPE)
|
||||
|
||||
|
@ -172,18 +172,12 @@ class AnnularSector(VMobject):
|
||||
arc_center = first_point - self.inner_radius * radial_unit_vector
|
||||
return arc_center
|
||||
|
||||
<<<<<<< HEAD
|
||||
def move_arc_center_to(self,point):
|
||||
v = point - self.get_arc_center()
|
||||
self.shift(v)
|
||||
return self
|
||||
|
||||
|
||||
|
||||
=======
|
||||
>>>>>>> master
|
||||
class Sector(AnnularSector):
|
||||
|
||||
CONFIG = {
|
||||
"outer_radius" : 1,
|
||||
"inner_radius" : 0
|
||||
|
Reference in New Issue
Block a user