You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To handle contact/collision, we need inverse mass matrix of the system. Currently, we calculate mass matrix with O(n^2) performance and invert the mass matrix which takes O(n^3) computation time in general. Instead of directly inverting mass matrix, we will implement a recursive algorithm for the inverse mass matrix with O(n^2) computation time.
The text was updated successfully, but these errors were encountered:
To handle contact/collision, we need inverse mass matrix of the system. Currently, we calculate mass matrix with O(n^2) performance and invert the mass matrix which takes O(n^3) computation time in general. Instead of directly inverting mass matrix, we will implement a recursive algorithm for the inverse mass matrix with O(n^2) computation time.
The text was updated successfully, but these errors were encountered: