3 #include <SimoxUtility/math/convert/mat4f_to_quat.h>
4 #include <VirtualRobot/IK/DifferentialIK.h>
5 #include <VirtualRobot/IK/JacobiProvider.h>
6 #include <VirtualRobot/MathTools.h>
7 #include <VirtualRobot/Nodes/RobotNode.h>
8 #include <VirtualRobot/Robot.h>
9 #include <VirtualRobot/RobotNodeSet.h>
24 const VirtualRobot::RobotNodeSetPtr& rtRns)
28 rtTCP = rtRns->getTCP();
30 ik.reset(
new VirtualRobot::DifferentialIK(
31 rtRns, rtRns->getRobot()->getRootNode(), VirtualRobot::JacobiProvider::eSVDDamped));
80 c.desiredPose.block<3, 3>(0, 0) * rtStatus.
currentPose.block<3, 3>(0, 0).transpose();
91 else if ((
c.desiredPose.block<3, 1>(0, 3) - rtStatus.
currentPose.block<3, 1>(0, 3)).norm() >
92 c.safeDistanceMMToGoal or
95 VirtualRobot::MathTools::deg2rad(
c.safeRotAngleDegreeToGoal))
110 ik->getJacobianMatrix(
rtTCP, VirtualRobot::IKSolver::CartesianSelection::All);
117 ik->computePseudoInverseJacobianMatrix(rtStatus.
jacobi.transpose(), lambda);
150 c.kpNullspace.cwiseProduct(
c.desiredNullspaceJointAngles.value() - rtStatus.
jointPos) -
215 currentPose = currentTCPPose;
216 desiredPose = currentTCPPose;
217 accumulateTime = 0.0;