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
origin:
u = np.stack([np.cos(theta), -np.sin(theta)])
l = np.stack([np.sin(theta), np.cos(theta)])
R = np.vstack([u, l])
When proceeding to the corresponding code, rotate in the opposite direction.
Check the segm points.
opinion:
u = np.stack([np.cos(theta), np.sin(theta)])
l = np.stack([-np.sin(theta), np.cos(theta)])
R = np.vstack([u, l])
Isn't this right?
The text was updated successfully, but these errors were encountered:
origin:
u = np.stack([np.cos(theta), -np.sin(theta)])
l = np.stack([np.sin(theta), np.cos(theta)])
R = np.vstack([u, l])
When proceeding to the corresponding code, rotate in the opposite direction.
Check the segm points.
opinion:
u = np.stack([np.cos(theta), np.sin(theta)])
l = np.stack([-np.sin(theta), np.cos(theta)])
R = np.vstack([u, l])
Isn't this right?
The text was updated successfully, but these errors were encountered: