We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e392be commit 247d6d7Copy full SHA for 247d6d7
manim/mobject/types/vectorized_mobject.py
@@ -1939,7 +1939,11 @@ def pointwise_become_partial(
1939
)
1940
else:
1941
# make a copy of points before setting self.points = np.empty(...)
1942
- vmobject_points = vmobject.points.copy() if self.points is vmobject.points else vmobject.points
+ vmobject_points = (
1943
+ vmobject.points.copy()
1944
+ if self.points is vmobject.points
1945
+ else vmobject.points
1946
+ )
1947
1948
# Allocate space for (upper_index-lower_index+1) Bézier curves.
1949
self.points = np.empty((nppc * (upper_index - lower_index + 1), self.dim))
0 commit comments