You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling interactive_orbitdiagram on a system ds first outputs this deprecation warning (just need to replace fig size kwarg):
┌ Warning: Found `resolution`in the theme when creating a `Scene`. The `resolution` keyword for`Scene`s and `Figure`s has been deprecated. Use `Figure(; size = ...` or `Scene(; size = ...)` instead, which better reflects that this is a unitless size and not a pixel resolution. The key could also come from `set_theme!` calls or related theming functions.
└ @ Makie ~/.julia/packages/Makie/We6MY/src/scenes.jl:227
Then it throws this error from Makie complaining about MakieLayout:
ERROR: UndefVarError:`MakieLayout` not defined
Stacktrace:
[1] interactive_orbitdiagram(ds::CoupledODEs{…}, p_index::Int64, p_min::Float64, p_max::Float64, i0::Int64; u0::Nothing, parname::String, title::String)
@ DynamicalSystemsVisualizations ~/.julia/packages/DynamicalSystems/Ndx8B/ext/src/orbitdiagram.jl:43
[2] interactive_orbitdiagram
@ ~/.julia/packages/DynamicalSystems/Ndx8B/ext/src/orbitdiagram.jl:3 [inlined]
[3] interactive_orbitdiagram(ds::CoupledODEs{…}, p_index::Int64, p_min::Float64, p_max::Float64)
@ DynamicalSystemsVisualizations ~/.julia/packages/DynamicalSystems/Ndx8B/ext/src/orbitdiagram.jl:3
[4] top-level scope
@ /home/jfisch27/Desktop/ThesisStuff/GeometricallyTunableOscillator/scripts/local/plotting/LEARN.jl:120
Some type information was truncated. Use `show(err)` to see complete types.
I think Makie.jl has been making some big changes lately, so just need to adjust according to the new API I assume.
Right, these are the latest stable versions. This is most likely a problem in interactive_orbitdiagram source code. Likely it hasn't been updated in a long time and it is using old and/or deprecated Makie syntax.
I am well outside capacity to fix this so pull requests are very welcomed!
Problem
Calling
interactive_orbitdiagram
on a systemds
first outputs this deprecation warning (just need to replace fig size kwarg):Then it throws this error from Makie complaining about
MakieLayout
:I think
Makie.jl
has been making some big changes lately, so just need to adjust according to the new API I assume.MRE
Package versions
The text was updated successfully, but these errors were encountered: