Klampt - shivamvats/notes GitHub Wiki
Gotchas
- Rotation is represented by a 9d list specifying the rotation matrix in column-major format. This means you must use
np.flatten(mat, order='F')
andnp.reshape(mat, (3,3), order='F')
.
Kinematics Modeling
URDF
- World frame Default fixed world frame is
world
.
Link
set_parent_transform
sets the transform of a link relative to its parent. Useful to move the base link of a manipulator.