Skip to content

Commit

Permalink
Clang formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
marrts committed Mar 7, 2024
1 parent 4122f3a commit e84ca11
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ class DescartesRobotSampler : public descartes_light::WaypointSampler<FloatType>
* @param is_valid This is a user defined function to filter out solution
*/
DescartesRobotSampler(std::string target_working_frame,
const Eigen::Isometry3d& target_pose, // NOLINT(modernize-pass-by-value)
const Eigen::Isometry3d& target_pose, // NOLINT(modernize-pass-by-value)
PoseSamplerFn target_pose_sampler,
tesseract_kinematics::KinematicGroup::ConstPtr manip,
DescartesCollision::Ptr collision,
std::string tcp_frame,
const Eigen::Isometry3d& tcp_offset, // NOLINT(modernize-pass-by-value)
const Eigen::Isometry3d& tcp_offset, // NOLINT(modernize-pass-by-value)
bool allow_collision,
DescartesVertexEvaluator::Ptr is_valid,
bool use_redundant_joint_solutions);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,17 @@ TESSERACT_COMMON_IGNORE_WARNINGS_POP
namespace tesseract_planning
{
template <typename FloatType>
DescartesRobotSampler<FloatType>::DescartesRobotSampler(std::string target_working_frame,
const Eigen::Isometry3d& target_pose, // NOLINT(modernize-pass-by-value)
PoseSamplerFn target_pose_sampler,
tesseract_kinematics::KinematicGroup::ConstPtr manip,
DescartesCollision::Ptr collision,
std::string tcp_frame,
const Eigen::Isometry3d& tcp_offset, // NOLINT(modernize-pass-by-value)
bool allow_collision,
DescartesVertexEvaluator::Ptr is_valid,
bool use_redundant_joint_solutions)
DescartesRobotSampler<FloatType>::DescartesRobotSampler(
std::string target_working_frame,
const Eigen::Isometry3d& target_pose, // NOLINT(modernize-pass-by-value)
PoseSamplerFn target_pose_sampler,
tesseract_kinematics::KinematicGroup::ConstPtr manip,
DescartesCollision::Ptr collision,
std::string tcp_frame,
const Eigen::Isometry3d& tcp_offset, // NOLINT(modernize-pass-by-value)
bool allow_collision,
DescartesVertexEvaluator::Ptr is_valid,
bool use_redundant_joint_solutions)
: target_working_frame_(std::move(target_working_frame))
, target_pose_(target_pose)
, target_pose_sampler_(std::move(target_pose_sampler))
Expand Down

0 comments on commit e84ca11

Please sign in to comment.