This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************************************************* | |
* Software License Agreement (BSD License) | |
* | |
* Copyright (c) 2008, Willow Garage, Inc. | |
* All rights reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions | |
* are met: | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Robot name="CustomRobot"> | |
<KinBody name="PassiveArm"> | |
<Body name="base" type="dynamic"> | |
<Translation>0 0 0</Translation> | |
</Body> | |
<Body name="shoulder" type="dynamic"> | |
<offsetfrom>base</offsetfrom> | |
<Translation>0 0 0</Translation> | |
</Body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Authors: Luis G. Torres */ | |
#include "RRG.h" | |
#include "ompl/tools/config/SelfConfig.h" | |
#include "ompl/base/Goal.h" | |
#include <boost/utility.hpp> | |
#include <boost/property_map/function_property_map.hpp> | |
#include <map> | |
#include <boost/timer/timer.hpp> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Authors: Luis G. Torres */ | |
#ifndef OMPL_CONTRIB_RRT_STAR_RRG_ | |
#define OMPL_CONTRIB_RRT_STAR_RRG_ | |
#include "ompl/geometric/planners/PlannerIncludes.h" | |
#include "ompl/base/OptimizationObjective.h" | |
#include "ompl/datastructures/NearestNeighbors.h" | |
#include "ompl/base/goals/GoalRegion.h" |