Skip to content

Commit

Permalink
Add support for jerk limits
Browse files Browse the repository at this point in the history
  • Loading branch information
Levi-Armstrong committed May 29, 2024
1 parent ed4dd2a commit 6887ce3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion manipulation/src/manipulation_widget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ void ManipulationWidget::onCartesianTransformChanged(const Eigen::Isometry3d& tr
}
}

if (!tesseract_common::satisfiesPositionLimits<double>(temp_seed, data_->kin_group->getLimits().joint_limits))
if (!tesseract_common::satisfiesLimits<double>(temp_seed, data_->kin_group->getLimits().joint_limits))
temp_seed = seed;

std::unordered_map<std::string, double> state;
Expand Down
1 change: 1 addition & 0 deletions scene_graph/src/models/limits_standard_item.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,6 @@ void LimitsStandardItem::ctor()
appendRow(createStandardItemFloat("effort", limits->effort));
appendRow(createStandardItemFloat("velocity", limits->velocity));
appendRow(createStandardItemFloat("acceleration", limits->acceleration));
appendRow(createStandardItemFloat("jerk", limits->jerk));
}
} // namespace tesseract_gui

0 comments on commit 6887ce3

Please sign in to comment.