|
| World () |
| Constructor.
|
|
| World (const World &other) |
| A copy constructor. other should not be changed while the copy constructor is running This does copy on write and should be quick.
|
|
virtual | ~World () |
|
| MOVEIT_STRUCT_FORWARD (Object) |
|
std::vector< std::string > | getObjectIds () const |
| Get the list of Object ids.
|
|
ObjectConstPtr | getObject (const std::string &object_id) const |
| Get a particular object.
|
|
const_iterator | begin () const |
|
const_iterator | end () const |
|
std::size_t | size () const |
|
const_iterator | find (const std::string &object_id) const |
|
bool | hasObject (const std::string &object_id) const |
| Check if a particular object exists in the collision world.
|
|
bool | knowsTransform (const std::string &name) const |
| Check if an object or subframe with given name exists in the collision world. A subframe name needs to be prefixed with the object's name separated by a slash.
|
|
const Eigen::Isometry3d & | getTransform (const std::string &name) const |
| Get the transform to an object or subframe with given name. If name does not exist, a std::runtime_error is thrown. A subframe name needs to be prefixed with the object's name separated by a slash. The transform is global (relative to the world origin). The returned transform is guaranteed to be a valid isometry.
|
|
const Eigen::Isometry3d & | getTransform (const std::string &name, bool &frame_found) const |
| Get the transform to an object or subframe with given name. If name does not exist, returns an identity transform and sets frame_found to false. A subframe name needs to be prefixed with the object's name separated by a slash. The transform is global (relative to the world origin). The returned transform is guaranteed to be a valid isometry.
|
|
const Eigen::Isometry3d & | getGlobalShapeTransform (const std::string &object_id, int shape_index) const |
| Get the global transform to a shape of an object with multiple shapes. shape_index is the index of the object (counting from 0) and needs to be valid. This function is used to construct the collision environment.
|
|
const EigenSTL::vector_Isometry3d & | getGlobalShapeTransforms (const std::string &object_id) const |
| Get the global transforms to the shapes of an object. This function is used to construct the collision environment.
|
|
void | addToObject (const std::string &object_id, const Eigen::Isometry3d &pose, const std::vector< shapes::ShapeConstPtr > &shapes, const EigenSTL::vector_Isometry3d &shape_poses) |
| Add a pose and shapes to an object in the map. This function makes repeated calls to addToObjectInternal() to add the shapes one by one.
|
|
void | addToObject (const std::string &object_id, const std::vector< shapes::ShapeConstPtr > &shapes, const EigenSTL::vector_Isometry3d &shape_poses) |
| Add shapes to an object in the map. This function makes repeated calls to addToObjectInternal() to add the shapes one by one.
|
|
void | addToObject (const std::string &object_id, const Eigen::Isometry3d &pose, const shapes::ShapeConstPtr &shape, const Eigen::Isometry3d &shape_pose) |
| Add a pose and shape to an object. If the object already exists, this call will add the shape to the object at the specified pose. Otherwise, the object is created and the specified shape is added. This calls addToObjectInternal(). shape_pose is defined relative to the object's pose, not to the world frame.
|
|
void | addToObject (const std::string &object_id, const shapes::ShapeConstPtr &shape, const Eigen::Isometry3d &shape_pose) |
| Add a shape to an object. If the object already exists, this call will add the shape to the object at the specified pose. Otherwise, the object is created and the specified shape is added. This calls addToObjectInternal(). shape_pose is defined relative to the object's pose, not to the world frame.
|
|
bool | moveShapeInObject (const std::string &object_id, const shapes::ShapeConstPtr &shape, const Eigen::Isometry3d &shape_pose) |
| Update the pose of a shape in an object. Shape equality is verified by comparing pointers. Returns true on success.
|
|
bool | moveShapesInObject (const std::string &object_id, const EigenSTL::vector_Isometry3d &shape_poses) |
| Update the pose of all shapes in an object. Shape size is verified. Returns true on success.
|
|
bool | moveObject (const std::string &object_id, const Eigen::Isometry3d &transform) |
| Move the object pose (thus moving all shapes and subframes in the object) according to the given transform specified in world frame. The transform is relative to and changes the object pose. It does not replace it.
|
|
bool | setObjectPose (const std::string &object_id, const Eigen::Isometry3d &pose) |
| Set the pose of an object. The pose is specified in the world frame.
|
|
bool | removeShapeFromObject (const std::string &object_id, const shapes::ShapeConstPtr &shape) |
| Remove shape from object. Shape equality is verified by comparing pointers. Ownership of the object is renounced (i.e. object is deleted if no external references exist) if this was the last shape in the object. Returns true on success and false if the object did not exist or did not contain the shape.
|
|
bool | removeObject (const std::string &object_id) |
| Remove a particular object. If there are no external pointers to the corresponding instance of Object, the memory is freed. Returns true on success and false if no such object was found.
|
|
bool | setSubframesOfObject (const std::string &object_id, const moveit::core::FixedTransformsMap &subframe_poses) |
| Set subframes on an object. The frames are relative to the object pose.
|
|
void | clearObjects () |
| Clear all objects. If there are no other pointers to corresponding instances of Objects, the memory is freed.
|
|
ObserverHandle | addObserver (const ObserverCallbackFn &callback) |
| register a callback function for notification of changes. callback will be called right after any change occurs to any Object. observer is the object which is requesting the changes. It is only used for identifying the callback in removeObserver().
|
|
void | removeObserver (const ObserverHandle observer_handle) |
| remove a notifier callback
|
|
void | notifyObserverAllObjects (const ObserverHandle observer_handle, Action action) const |
|
Maintain a representation of the environment.
Definition at line 58 of file world.h.