Skip to content

Commit

Permalink
Update renaming of ContactManagerConfig variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Armstrong committed Dec 6, 2021
1 parent 1a9ea53 commit a9a2f1f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions dependencies.rosinstall
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
- git:
local-name: tesseract
uri: https://github.com/tesseract-robotics/tesseract.git
version: 80d60cef50e7bebd957de627e9a987534f0c678a
version: 0.7.0
- git:
local-name: trajopt
uri: https://github.com/tesseract-robotics/trajopt.git
version: c02b1dfb1ad49c688856b482092700439f57c867
version: 0.2.0
- git:
local-name: tesseract_planning
uri: https://github.com/tesseract-robotics/tesseract_planning.git
version: b8a95bfbd2efc46eb2dda69f108e2bac822310cf
version: 0.7.0
- git:
local-name: descartes_light
uri: https://github.com/swri-robotics/descartes_light.git
Expand Down
6 changes: 3 additions & 3 deletions dependencies_with_ext.rosinstall
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
- git:
local-name: tesseract
uri: https://github.com/tesseract-robotics/tesseract.git
version: 80d60cef50e7bebd957de627e9a987534f0c678a
version: 0.7.0
- git:
local-name: trajopt
uri: https://github.com/tesseract-robotics/trajopt_ros.git
version: c02b1dfb1ad49c688856b482092700439f57c867
version: 0.2.0
- git:
local-name: tesseract_planning
uri: https://github.com/tesseract-robotics/tesseract_planning.git
version: b8a95bfbd2efc46eb2dda69f108e2bac822310cf
version: 0.7.0
- git:
local-name: descartes_light
uri: https://github.com/swri-robotics/descartes_light.git
Expand Down
5 changes: 3 additions & 2 deletions tesseract_ros_examples/src/glass_upright_example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,11 @@ bool GlassUprightExample::run()
{
auto composite_profile = std::make_shared<TrajOptIfoptDefaultCompositeProfile>();
composite_profile->collision_cost_config->type = tesseract_collision::CollisionEvaluatorType::LVS_DISCRETE;
composite_profile->collision_cost_config->contact_manager_config.collision_margin_data.setDefaultCollisionMargin(0.01);
composite_profile->collision_cost_config->contact_manager_config = tesseract_collision::ContactManagerConfig(0.01);
composite_profile->collision_cost_config->collision_margin_buffer = 0.01;
composite_profile->collision_constraint_config->type = tesseract_collision::CollisionEvaluatorType::LVS_DISCRETE;
composite_profile->collision_constraint_config->contact_manager_config.collision_margin_data.setDefaultCollisionMargin(0.01);
composite_profile->collision_constraint_config->contact_manager_config =
tesseract_collision::ContactManagerConfig(0.01);
composite_profile->collision_constraint_config->collision_margin_buffer = 0.01;
composite_profile->smooth_velocities = true;
composite_profile->smooth_accelerations = false;
Expand Down
1 change: 1 addition & 0 deletions tesseract_rosutils/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
<depend>roscpp</depend>
<depend>roslib</depend>
<depend>std_msgs</depend>
<depend>visualization_msgs</depend>

<test_depend>tesseract_support</test_depend>

Expand Down

0 comments on commit a9a2f1f

Please sign in to comment.