Skip to content

Commit

Permalink
Remove more debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-bass committed Aug 10, 2024
1 parent 8e3ea97 commit b5775bc
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,8 @@ void PlanComponentsBuilder::blend(const planning_scene::PlanningSceneConstPtr& p

// Append the new trajectory elements
appendWithStrictTimeIncrease(*(traj_cont_.back()), *blend_response.first_trajectory);
for (size_t i = 0; i < traj_cont_.back()->getWayPointCount(); ++i) {
std::cout << "PRE-BLEND TRAJ CONT IDX " << i << ", dt = " << traj_cont_.back()->getWayPointDurationFromStart(i) << std::endl;
}
// traj_cont_.back()->append(*blend_response.blend_trajectory, 0.0);
appendWithStrictTimeIncrease(*(traj_cont_.back()), *blend_response.blend_trajectory);
for (size_t i = 0; i < traj_cont_.back()->getWayPointCount(); ++i) {
std::cout << "POST-BLEND TRAJ CONT IDX " << i << ", dt = " << traj_cont_.back()->getWayPointDurationFromStart(i) << std::endl;
}

// Store the last new trajectory element for future processing
traj_tail_ = blend_response.second_trajectory; // first for next blending segment
}
Expand Down

0 comments on commit b5775bc

Please sign in to comment.