Skip to content

Commit

Permalink
Actually apply reversal of previous fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chopan050 committed Dec 7, 2024
1 parent 9514d92 commit 28b3904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manim/mobject/mobject.py
Original file line number Diff line number Diff line change
Expand Up @@ -1779,7 +1779,7 @@ def put_start_and_end_on(self, start: Point3DLike, end: Point3DLike) -> Self:
# TODO: this looks broken. It makes self.points a Point3D instead
# of a Point3D_Array. However, modifying this breaks some tests
# where this is currently expected.
self.points = np.array(start, ndmin=2)
self.points = np.array(start)
return self
target_vect = np.asarray(end) - np.asarray(start)
axis = (
Expand Down

0 comments on commit 28b3904

Please sign in to comment.