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
Using your decompose44 function, it correctly picks out the scaling factors, but doesn't seem to handle negative scalings. That is, reflections. Any way it could be modified to account for negative scalings? For example, the following matrix
Using your decompose44 function, it correctly picks out the scaling factors, but doesn't seem to handle negative scalings. That is, reflections. Any way it could be modified to account for negative scalings? For example, the following matrix
A = np.array([[-2, 0, 0, 0], [0, 1, 0, 0], [0, 0, 1, 0], [0, 0, 0, 1]])
should give
sx = -2
sy = 1
sz = 1
Thanks.
The text was updated successfully, but these errors were encountered: