Skip to content
Snippets Groups Projects
Commit 929afca5 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Add isJoint() and isHemisphereJoint() to RobotNode

parent 03efa90c
No related branches found
No related tags found
No related merge requests found
......@@ -637,6 +637,11 @@ namespace VirtualRobot
return false;
}
bool RobotNode::isHemisphereJoint() const
{
return false;
}
void RobotNode::setLimitless(bool limitless)
{
this->limitless = limitless;
......@@ -860,6 +865,11 @@ namespace VirtualRobot
jointLimitHi = hi;
}
bool RobotNode::isJoint() const
{
return isRotationalJoint() or isTranslationalJoint() or isHemisphereJoint();
}
void RobotNode::setMaxTorque(float maxTo)
{
maxTorque = maxTo;
......
......@@ -224,8 +224,10 @@ namespace VirtualRobot
*/
virtual void setJointLimits(float lo, float hi);
bool isJoint() const;
virtual bool isTranslationalJoint() const;
virtual bool isRotationalJoint() const;
virtual bool isHemisphereJoint() const;
/**
* @param limitless wheter this node has joint limits or not.
......
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