Skip to content

Commit

Permalink
Fix swapped axes in 2d strategy visualization
Browse files Browse the repository at this point in the history
  • Loading branch information
lassepe committed Dec 6, 2024
1 parent 39dbc4c commit 9b3070d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/MakieExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function Makie.plot!(viz::OpenLoopStrategyViz{<:Tuple{TrajectoryGamesBase.OpenLo
endtime = something($(viz.endtime), lastindex($strategy.xs))
subsampled_states = $strategy.xs[starttime:($(viz.position_subsampling)):endtime]
if $(viz.dimensionality) == 2
[Makie.Point2f(xi[2], xi[1]) for xi in subsampled_states]
[Makie.Point2f(xi[1], xi[2]) for xi in subsampled_states]
elseif $(viz.dimensionality) == 3
[Makie.Point3f(xi[1], xi[2], xi[3]) for xi in subsampled_states]
else
Expand Down

0 comments on commit 9b3070d

Please sign in to comment.