"Computes all the terms required to compute the derivatives of the placement, spatial velocity and acceleration\n"
"for any joint of the model.\n"
"The results are stored in data.");
bp::def("getJointVelocityDerivatives",
getJointVelocityDerivatives_proxy,
bp::args("Model","Data",
"jointId",
"Reference Frame (either WORLD or LOCAL)"),
"Computes the partial derivaties of the spatial velocity of a given with respect to\n"
"the joint configuration and velocity and returns them as a tuple.\n"
"The Jacobians can be either expressed in the LOCAL frame of the joint or in the WORLD coordinate frame depending on the value of the Reference Frame.\n"
"You must first call computForwardKinematicsDerivatives before calling this function");
bp::def("getJointAccelerationDerivatives",
getJointAccelerationDerivatives_proxy,
bp::args("Model","Data",
"jointId",
"Reference Frame (either WORLD or LOCAL)"),
"Computes the partial derivaties of the spatial acceleration of a given with respect to\n"
"the joint configuration, velocity and acceleration and returns them as a tuple.\n"
"The Jacobians can be either expressed in the LOCAL frame of the joint or in the WORLD coordinate frame depending on the value of the Reference Frame.\n"
"You must first call computForwardKinematicsDerivatives before calling this function");