Skip to content

Commit

Permalink
Update vectorized_mobject.py
Browse files Browse the repository at this point in the history
  • Loading branch information
CobaltIII authored Dec 29, 2024
1 parent 06857fa commit 3ee17ff
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions manim/mobject/types/vectorized_mobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -1966,9 +1966,8 @@ def pointwise_become_partial(
0,
upper_residue,
)
if self.has_tip():
if a != 0:
self.remove(self.tip)
if self.has_tip() and a != 0:
self.remove(self.tip)
return self

def get_subcurve(self, a: float, b: float) -> Self:
Expand Down

0 comments on commit 3ee17ff

Please sign in to comment.