Skip to content
Snippets Groups Projects
Commit 7517dbbc authored by vahrenkamp's avatar vahrenkamp
Browse files

removed some debug checks

git-svn-id: http://svn.code.sf.net/p/simox/code/trunk@670 042f3d55-54a8-47e9-b7fb-15903f145c44
parent 4454a32e
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ BulletRobot::BulletRobot(VirtualRobot::RobotPtr rob, bool enableJointMotors)
std::cout << "Found force torque sensor: " << node->getName() << std::endl;
}
}
#ifdef _DEBUG
#ifdef 0
std::string nameBodies = "BulletRobot_RNS_Bodies_All";
std::vector<RobotNodePtr> rnAll = robot->getRobotNodes();
std::vector<RobotNodePtr> rnsBodies;
......@@ -538,11 +538,11 @@ void BulletRobot::actuateJoints(double dt)
{
maxImpulse = it->second.node->getMaxTorque() * btScalar(dt);
}*/
#ifdef _DEBUG
#ifdef 0
if (it->first->getName() == "Elbow R")
cout << "################### " << it->first->getName() <<": posActual:" << posActual << ", posTarget:" << posTarget << ", actvel:" << velActual << ", target vel:" << targetVelocity << ", maxImpulse" << maxImpulse << endl;
#endif
#ifdef _DEBUG
#ifdef 0
std::string nameBodies = "BulletRobot_RNS_Bodies_All";
VirtualRobot::RobotNodeSetPtr rnsBodies = robot->getRobotNodeSet(nameBodies);
Eigen::Vector3f v = getComVelocityGlobal(rnsBodies);
......@@ -552,7 +552,7 @@ void BulletRobot::actuateJoints(double dt)
}
#endif
hinge->enableAngularMotor(true, btScalar(targetVelocity), maxImpulse);
#ifdef _DEBUG
#ifdef 0
//std::string nameBodies = "BulletRobot_RNS_Bodies_All";
//VirtualRobot::RobotNodeSetPtr rnsBodies = robot->getRobotNodeSet(nameBodies);
v = getComVelocityGlobal(rnsBodies);
......
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