how can I understand the meanning of cartesian_coeff ,when set cartesian_coeff(5) to zero ,what does that mean #188
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
-
|
Beta Was this translation helpful? Give feedback.
-
in puzzle_piece_auxillary_axes_example
// Create TrajOpt Profile
auto trajopt_plan_profile = std::make_shared<tesseract_planning::TrajOptDefaultPlanProfile>();
trajopt_plan_profile->cartesian_coeff = Eigen::VectorXd::Constant(6, 1, 5);
trajopt_plan_profile->cartesian_coeff(3) = 2;
trajopt_plan_profile->cartesian_coeff(4) = 2;
trajopt_plan_profile->cartesian_coeff(5) = 0;
how can I understand the meanning of cartesian_coeff ,when set cartesian_coeff(5) to zero ,what does that mean
Beta Was this translation helpful? Give feedback.
All reactions