mirror of
https://github.com/3b1b/manim.git
synced 2025-07-28 12:32:36 +08:00
Add zero point edge case for point_from_proportion
This commit is contained in:
@ -805,6 +805,8 @@ class VMobject(Mobject):
|
|||||||
return self.get_start()
|
return self.get_start()
|
||||||
elif alpha >= 1:
|
elif alpha >= 1:
|
||||||
return self.get_end()
|
return self.get_end()
|
||||||
|
if self.get_num_points() == 0:
|
||||||
|
return self.get_center()
|
||||||
index, residue = self.curve_and_prop_of_partial_point(alpha)
|
index, residue = self.curve_and_prop_of_partial_point(alpha)
|
||||||
return self.get_nth_curve_function(index)(residue)
|
return self.get_nth_curve_function(index)(residue)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user