Skip to content

Commit 3d029c1

Browse files
Fix for issue 4255 - Arrow3D: get_start() and get_end() methods both return np.array([0,0,0]). (#4320)
1 parent f63ba71 commit 3d029c1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

manim/mobject/types/vectorized_mobject.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"DashedVMobject",
1212
]
1313

14-
1514
import itertools as it
1615
import sys
1716
from collections.abc import Hashable, Iterable, Mapping, Sequence
@@ -1916,7 +1915,6 @@ def pointwise_become_partial(
19161915
return self
19171916
num_curves = vmobject.get_num_curves()
19181917
if num_curves == 0:
1919-
self.clear_points()
19201918
return self
19211919

19221920
# The following two lines will compute which Bézier curves of the given Mobject must be processed.

0 commit comments

Comments
 (0)