Closed ManuelZ closed 6 months ago
you are totally right and sorry for that. Checks are changed in 1.8.7. There are some errors in the CreateRigidBody function, in particular the comparison (matrix == None) does not work for numpy and is changed to (matrix is None). I will try to update on GitHub and pypi this week. For now, I recommend to use rigid bodies directly. There are some further errors in the CreateRigidBody function related to initial rotation matrices in this function that is resolved.
When trying to use
initialRotationMatrix
inCreateRigidBody
, I'm getting an error.Minimally reproducible example:
Changing all the
!= None
checks tois not None
inmainSystemExtensions.py
solves it. (And maybe changing the== None
s tois None
would be worth it as well).