mirror of
https://github.com/3b1b/manim.git
synced 2025-08-21 05:44:04 +00:00
Bug fix to add_smooth_curve_to
This commit is contained in:
parent
5a238f1551
commit
23f7bce427
1 changed files with 1 additions and 1 deletions
|
@ -440,7 +440,7 @@ class VMobject(Mobject):
|
||||||
|
|
||||||
def add_smooth_curve_to(self, point):
|
def add_smooth_curve_to(self, point):
|
||||||
if self.has_new_path_started():
|
if self.has_new_path_started():
|
||||||
self.add_line_to(anchor)
|
self.add_line_to(point)
|
||||||
else:
|
else:
|
||||||
self.throw_error_if_no_points()
|
self.throw_error_if_no_points()
|
||||||
new_handle = self.get_reflection_of_last_handle()
|
new_handle = self.get_reflection_of_last_handle()
|
||||||
|
|
Loading…
Add table
Reference in a new issue