Skip to content

Commit

Permalink
Merge branch 'main' into feature/compat_bump
Browse files Browse the repository at this point in the history
  • Loading branch information
lassepe authored Dec 6, 2024
2 parents 85fa4be + 9b3070d commit 820d652
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 820d652

Please sign in to comment.