mirror of
https://github.com/3b1b/manim.git
synced 2025-11-14 13:17:44 +00:00
Fix aligned subpaths bug
This commit is contained in:
parent
87afdac6a4
commit
945aa9713f
1 changed files with 2 additions and 2 deletions
|
|
@ -845,8 +845,8 @@ class VMobject(Mobject):
|
||||||
sp2 = self.insert_n_curves_to_point_list(diff2, sp2)
|
sp2 = self.insert_n_curves_to_point_list(diff2, sp2)
|
||||||
if n > 0:
|
if n > 0:
|
||||||
# Add intermediate anchor to mark path end
|
# Add intermediate anchor to mark path end
|
||||||
new_subpaths1.append(new_subpaths1[0][-1])
|
new_subpaths1.append(new_subpaths1[-1][-1])
|
||||||
new_subpaths2.append(new_subpaths2[0][-1])
|
new_subpaths2.append(new_subpaths2[-1][-1])
|
||||||
new_subpaths1.append(sp1)
|
new_subpaths1.append(sp1)
|
||||||
new_subpaths2.append(sp2)
|
new_subpaths2.append(sp2)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue