mirror of
https://github.com/3b1b/manim.git
synced 2025-08-01 06:22:54 +08:00
Finished recursive solution to constrained Hanoi
This commit is contained in:
@ -31,9 +31,9 @@ class Arc(VMobject):
|
||||
)
|
||||
]
|
||||
|
||||
def add_tip(self):
|
||||
def add_tip(self, tip_length = 0.25):
|
||||
#TODO, do this a better way
|
||||
arrow = Arrow(*self.points[-2:])
|
||||
arrow = Arrow(*self.points[-2:], tip_length = tip_length)
|
||||
self.add(arrow.split()[-1])
|
||||
self.highlight(self.get_color())
|
||||
return self
|
||||
|
Reference in New Issue
Block a user