JuliaWaveScattering / MultipleScattering.jl

A Julia library for simulating, processing, and plotting multiple scattering of waves.
Other
45 stars 12 forks source link

Change Plots submodule to use RecipesBase #2

Closed jondea closed 6 years ago

jondea commented 6 years ago

Because the Plots package is a dependency of MultipleScattering.Plots, we cannot precompile the whole MultipleScattering package even though it would make loadup much faster. Instead of using the Plots package, we are really supposed to use the RecipesBase which adds recipes (or methods) to the plots function. It would also allow us to just call plot(model) and the recipe would be used.

Recipe docs