Skip to content

Commit

Permalink
KinematicTree: getter for joints
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-rauch committed Jun 18, 2019
1 parent 9f67e9b commit cfb3914
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions exotica_core/include/exotica_core/kinematic_tree.h
Expand Up @@ -220,6 +220,9 @@ class KinematicTree : public Uncopyable
const std::map<std::string, std::weak_ptr<KinematicElement>>& GetCollisionTreeMap() const { return collision_tree_map_; }
bool DoesLinkWithNameExist(std::string name) const; //!< Checks whether a link with this name exists in any of the trees

const std::vector<std::weak_ptr<KinematicElement>>& GetControlledJoints() const { return controlled_joints_; }
const std::map<std::string, std::weak_ptr<KinematicElement>>& GetControlledJointsMap() const { return controlled_joints_map_; }
const std::map<std::string, std::weak_ptr<KinematicElement>>& GetModelJointsMap() const { return model_joints_map_; }
std::map<std::string, shapes::ShapeType> GetCollisionObjectTypes() const;

/// @brief SetSeed sets the seed of the random generator for deterministic joint state sampling
Expand Down

0 comments on commit cfb3914

Please sign in to comment.