Container for voxelized signed distance fields.
To enable efficient sharing signed distance fields (which may be quite large) between multiple uses, a VoxelSignedDistanceField operates equivalently to shared_ptr<const T> for the underlying voxelized signed distance field.
#include <drake/planning/experimental/voxel_signed_distance_field.h>
Classes | |
| struct | GenerationParameters |
| Param struct for generating a VoxelSignedDistanceField. More... | |
Public Member Functions | |
| VoxelSignedDistanceField () | |
| Default constructor creates an empty VoxelSignedDistanceField. | |
| VoxelSignedDistanceField (const VoxelSignedDistanceField &other) | |
| VoxelSignedDistanceField provides copy, move, and assignment. | |
| VoxelSignedDistanceField (VoxelSignedDistanceField &&other) | |
| VoxelSignedDistanceField & | operator= (const VoxelSignedDistanceField &other) |
| VoxelSignedDistanceField & | operator= (VoxelSignedDistanceField &&other) |
| const std::string & | parent_body_name () const |
| Get the name of the parent body frame. | |
| bool | is_empty () const |
| Returns true if empty. | |
| const void * | internal_representation () const |
Friends | |
| class | VoxelOccupancyMap |
| class | VoxelTaggedObjectOccupancyMap |
| VoxelSignedDistanceField | ( | ) |
Default constructor creates an empty VoxelSignedDistanceField.
| VoxelSignedDistanceField | ( | const VoxelSignedDistanceField & | other | ) |
VoxelSignedDistanceField provides copy, move, and assignment.
| VoxelSignedDistanceField | ( | VoxelSignedDistanceField && | other | ) |
| const void * internal_representation | ( | ) | const |
| bool is_empty | ( | ) | const |
Returns true if empty.
A VoxelSignedDistanceField will be empty if it is in the default constructed state or has been moved-from.
| VoxelSignedDistanceField & operator= | ( | const VoxelSignedDistanceField & | other | ) |
| VoxelSignedDistanceField & operator= | ( | VoxelSignedDistanceField && | other | ) |
| const std::string & parent_body_name | ( | ) | const |
Get the name of the parent body frame.
|
friend |
|
friend |