Skip to content

Commit

Permalink
unformat
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Jun 2, 2024
1 parent e1a1ec2 commit 0714675
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions ksp_plugin/interface_flight_plan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -527,8 +527,7 @@ void __cdecl principia__FlightPlanRenderedApsides(
plugin->ComputeAndRenderApsides(
celestial_index,
flight_plan,
segment.begin(),
segment.end(),
segment.begin(), segment.end(),
FromXYZ<Position<World>>(sun_world_position),
max_points,
segment_rendered_apoapsides,
Expand Down Expand Up @@ -562,8 +561,7 @@ void __cdecl principia__FlightPlanRenderedClosestApproaches(
DiscreteTrajectory<World> segment_rendered_closest_approaches;
plugin->ComputeAndRenderClosestApproaches(
flight_plan,
segment.begin(),
segment.end(),
segment.begin(), segment.end(),
FromXYZ<Position<World>>(sun_world_position),
max_points,
segment_rendered_closest_approaches);
Expand Down Expand Up @@ -593,8 +591,7 @@ void __cdecl principia__FlightPlanRenderedNodes(Plugin const* const plugin,
for (auto const& segment : flight_plan.segments()) {
DiscreteTrajectory<World> segment_rendered_ascending;
DiscreteTrajectory<World> segment_rendered_descending;
plugin->ComputeAndRenderNodes(segment.begin(),
segment.end(),
plugin->ComputeAndRenderNodes(segment.begin(), segment.end(),
FromXYZ<Position<World>>(sun_world_position),
max_points,
segment_rendered_ascending,
Expand Down

0 comments on commit 0714675

Please sign in to comment.