Skip to content

Commit

Permalink
Remove undefined Makie recipe keywords (#177)
Browse files Browse the repository at this point in the history
  • Loading branch information
henry2004y authored Jun 9, 2024
1 parent d122177 commit 2ed69d9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/examples/advanced/demo_shock.jl
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,8 @@ function plot_dist_pairplots(x, sols; ntchunks::Int=20)
l2 = @sprintf "x: [%d, %d] km upstream" xrange[2]/1e3 xrange[3]/1e3

pairplot(f[1,1],
PairPlots.Series(table[1], label=l1, color=c1, strokecolor=c1),
PairPlots.Series(table[2], label=l2, color=c2, strokecolor=c2),
PairPlots.Series(table[1], label=l1, color=c1),
PairPlots.Series(table[2], label=l2, color=c2),
PairPlots.Truth(
(;
vx = [-545.1484121835928, -172.1748987410881],
Expand All @@ -258,7 +258,7 @@ function plot_dist_pairplot(x, sols; ntchunks::Int=20)
c2 = Makie.wong_colors(0.5)[2]

pairplot(f[1,1],
PairPlots.Series(table[1], color=c1, strokecolor=c1),
PairPlots.Series(table[1], color=c1),
PairPlots.Truth(
(;
vx = -172.1748987410881,
Expand All @@ -270,7 +270,7 @@ function plot_dist_pairplot(x, sols; ntchunks::Int=20)
)

pairplot(f[2,1],
PairPlots.Series(table[2], color=c2, strokecolor=c2),
PairPlots.Series(table[2], color=c2),
PairPlots.Truth(
(;
vx = -545.1484121835928,
Expand Down

0 comments on commit 2ed69d9

Please sign in to comment.