-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Axis-Aligned Bounding Box option to Plane-Slicer Planner
- Loading branch information
1 parent
9c97ac4
commit f30d772
Showing
5 changed files
with
72 additions
and
12 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,17 @@ | ||
float64 raster_spacing # Offset between two rasters | ||
float64 point_spacing # Required spacing between path points | ||
float64 raster_rot_offset # Specifies the direction of the raster path in radians | ||
float64 raster_rot_offset # Specifies the direction of the raster path in radians. Rotates about short dimension of bounding box. | ||
float64 min_segment_size # The minimum segment size to allow when finding intersections; small segments will be discarded | ||
float64 min_hole_size # A path may pass over holes smaller than this, but must be broken when larger holes are encounterd. | ||
float64 tool_offset # How far off the surface the tool needs to be | ||
|
||
# When set to TRUE: initial cuts are determined using an axis-aligned bounding box. (global axes) | ||
# When set to FALSE: initial cuts are determined using an object-oriented bounding box and the | ||
# principal axes of the part. (Note that ROS sets message fields to 0/False by default.) | ||
bool raster_wrt_global_axes | ||
|
||
# Normal of the cutting planes. Points from the first raster to the second raster, not the | ||
# direction from the first point in one raster to the second point of the same raster. X is the | ||
# longest direction of the bounding box, Z is the shortest, Y is middle, following right hand rule. | ||
# If left as 0 (magnitude < 0.000001), defaults to [0,1,0], the mid direction of the bounding box. | ||
geometry_msgs/Vector3 raster_direction |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -124,6 +124,4 @@ namespace tool_path_planner | |
|
||
} | ||
|
||
|
||
|
||
#endif /* INCLUDE_TOOL_PATH_PLANNER_UTILITIES_H_ */ |
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
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