Fix for issue 4255 - Arrow3D: get_start() and get_end() methods both return np.array([0,0,0]). (#4320)

This commit is contained in:
Henrik Skov Midtiby 2025-07-10 10:24:23 +02:00 committed by GitHub
commit 3d029c1280
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,7 +11,6 @@ __all__ = [
"DashedVMobject",
]
import itertools as it
import sys
from collections.abc import Hashable, Iterable, Mapping, Sequence
@ -1916,7 +1915,6 @@ class VMobject(Mobject):
return self
num_curves = vmobject.get_num_curves()
if num_curves == 0:
self.clear_points()
return self
# The following two lines will compute which Bézier curves of the given Mobject must be processed.