Skip to content

Commit

Permalink
Document auto scale in Rviz plugin (moveit#602)
Browse files Browse the repository at this point in the history
* IKConstraintSampler: Fixed transform from end-effector to ik chain tip.
Previously the transform was done before sampling poses, which only works for pure orientation constraints.
Now transforms after each sample.
Removed no longer needed methods swapLinkModel.

* Specify auto scale
  • Loading branch information
davetcoleman authored Aug 29, 2017
1 parent 285254c commit 246bfe1
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,10 @@ MotionPlanningDisplay::MotionPlanningDisplay()
query_goal_state_property_ =
new rviz::BoolProperty("Query Goal State", true, "Shows the goal state for the motion planning query",
plan_category_, SLOT(changedQueryGoalState()), this);
query_marker_scale_property_ = new rviz::FloatProperty(
"Interactive Marker Size", 0.0f, "Specifies scale of the interactive marker overlayed on the robot",
plan_category_, SLOT(changedQueryMarkerScale()), this);
query_marker_scale_property_ =
new rviz::FloatProperty("Interactive Marker Size", 0.0f,
"Specifies scale of the interactive marker overlayed on the robot. 0 is auto scale.",
plan_category_, SLOT(changedQueryMarkerScale()), this);
query_marker_scale_property_->setMin(0.0f);

query_start_color_property_ =
Expand Down

0 comments on commit 246bfe1

Please sign in to comment.