Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 4db66bc

Browse files
committedFeb 1, 2025
ボール軌道予測の描画
1 parent 47c056b commit 4db66bc

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed
 

‎session/crane_planner_plugins/include/crane_planner_plugins/attacker_skill_planner.hpp

+6-8
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,12 @@ class AttackerSkillPlanner : public PlannerBase
5555
}
5656
if (world_model->ball.isMoving()) {
5757
{
58-
SvgLineBuilder line_builder;
59-
line_builder.start(world_model->ball.pos)
60-
.end(
61-
world_model->ball.pos +
62-
world_model->ball.vel.normalized() * world_model->getBallDistanceHorizon())
63-
.stroke("red")
64-
.strokeWidth(30);
65-
visualizer->add(line_builder.getSvgString());
58+
SvgPolyLineBuilder polyline_builder;
59+
for (auto [point, distance]: world_model->getBallSequence(2.0, 0.1)) {
60+
polyline_builder.addPoint(point);
61+
}
62+
polyline_builder.stroke("orange", 0.3).strokeWidth(100);
63+
visualizer->add(polyline_builder.getSvgString());
6664
}
6765
}
6866
auto status = skill->run();

0 commit comments

Comments
 (0)
Please sign in to comment.