Replies: 1 comment
-
Changing the code if not np.all(self.get_points() == old_points): to if not np.array_equal(self.get_points(), old_points): solved the problem. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Trying to run the beginners sample code
and getting the error at the
Circle
creationThe same error arises when run
manimgl
in interactive mode and trying to create a newVMobject
.I create new venv with Python 3.11.4, manimgl==1.6.1.
Beta Was this translation helpful? Give feedback.
All reactions