Skip to content
Snippets Groups Projects
Commit 9493a1fe authored by Raphael's avatar Raphael
Browse files

add a VirtualRobot::Robot::clone function taking no parameter that just clones...

add a VirtualRobot::Robot::clone function taking no parameter that just clones the robot (no renaming etc)
parent caa1d701
No related branches found
No related tags found
No related merge requests found
......@@ -828,6 +828,11 @@ namespace VirtualRobot
return result;
}
RobotPtr Robot::clone()
{
return clone(getName());
}
void Robot::createVisualizationFromCollisionModels()
{
std::vector<RobotNodePtr> robotNodes = this->getRobotNodes();
......
......@@ -245,6 +245,7 @@ namespace VirtualRobot
*/
virtual RobotPtr clone(const std::string& name, CollisionCheckerPtr collisionChecker = CollisionCheckerPtr(), float scaling = 1.0f);
virtual RobotPtr clone();
/*!
Just storing the filename.
......
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