mirror of
https://github.com/3b1b/manim.git
synced 2025-09-19 04:41:56 +00:00
Final merge conflict cleanup
This commit is contained in:
parent
f6c9c6eec6
commit
47c41139bf
2 changed files with 5 additions and 5 deletions
|
@ -482,6 +482,11 @@ class Scene(object):
|
|||
|
||||
def preview(self):
|
||||
TkSceneRoot(self)
|
||||
|
||||
def save_image(self, name = None, mode = "RGB", dont_update = False):
|
||||
folder = "images"
|
||||
if dont_update:
|
||||
folder = str(self)
|
||||
|
||||
def get_image_file_path(self, name = None, dont_update = False):
|
||||
folder = "images"
|
||||
|
|
|
@ -172,16 +172,11 @@ 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 = {
|
||||
|
|
Loading…
Add table
Reference in a new issue