mirror of
https://github.com/3b1b/manim.git
synced 2025-07-31 22:13:30 +08:00
This commit is contained in:
@ -544,7 +544,9 @@ class VMobject(Mobject):
|
|||||||
|
|
||||||
def has_new_path_started(self) -> bool:
|
def has_new_path_started(self) -> bool:
|
||||||
points = self.get_points()
|
points = self.get_points()
|
||||||
if len(points) == 1:
|
if len(points) == 0:
|
||||||
|
return False
|
||||||
|
elif len(points) == 1:
|
||||||
return True
|
return True
|
||||||
return self.consider_points_equal(points[-3], points[-2])
|
return self.consider_points_equal(points[-3], points[-2])
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user