reachability_plugin.cpp
Go to the documentation of this file.
2 
3 
4 
6 {
7 ReachabilityPlugin::ReachabilityPlugin(const std::string& name)
8  : Plugin(name)
9 {
10 }
11 
13 {
14 }
15 
17 {
18  return false;
19 }
20 
21 bool ReachabilityPlugin::isReachable(const State& left_foot, const State& right_foot, const State& swing_foot) const
22 {
23  if (swing_foot.getLeg() == LEFT)
24  return isReachable(right_foot, swing_foot);
25  else
26  return isReachable(left_foot, swing_foot);
27 }
28 }
virtual bool isReachable(const State &current, const State &next) const =0


vigir_footstep_planning_plugins
Author(s): Alexander Stumpf
autogenerated on Mon Jun 10 2019 15:47:39