Gaston: initial :quiver support

This commit is contained in:
t-bltg 2021-08-03 17:55:52 +02:00 committed by GitHub
parent 67f441f152
commit c0ff6e3dee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -305,6 +305,8 @@ function gaston_seriesconf!(sp::Subplot{GastonBackend}, series::Series, i::Int,
elseif st == :wireframe elseif st == :wireframe
lc, dt, lw = gaston_lc_ls_lw(series, clims, i) lc, dt, lw = gaston_lc_ls_lw(series, clims, i)
push!(curveconf, "w lines lc $lc dt $dt lw $lw") push!(curveconf, "w lines lc $lc dt $dt lw $lw")
elseif st == :quiver
push!(curveconf, "w vectors filled")
else else
@warn "Gaston: $st is not implemented yet" @warn "Gaston: $st is not implemented yet"
end end