Skip to content
Snippets Groups Projects
Commit c8916622 authored by Nikolaus Vahrenkamp's avatar Nikolaus Vahrenkamp
Browse files

added urdf fixed joint

parent e8cc38de
No related branches found
No related tags found
No related merge requests found
......@@ -368,6 +368,10 @@ namespace VirtualRobot
result = prismaticNodeFactory->createRobotNode(robo, name, rnVisu, rnCol, limitLo, limitHi, 0, preJointTransform, axis, idVec3, physics);
break;
case urdf::Joint::FIXED:
result = prismaticNodeFactory->createRobotNode(robo, name, rnVisu, rnCol, limitLo, limitHi, 0, preJointTransform, axis, idVec3, physics);
break;
default:
result = fixedNodeFactory->createRobotNode(robo, name, rnVisu, rnCol, 0, 0, 0, preJointTransform, idVec3, idVec3, physics);
std::cout << std::endl << "RobotNode [" << name << "] has a not implemented joint type: " << urdfJoint->type << std::endl << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment