Multiple Makie display windows

https://github.com/JuliaPlots/Makie.jl/pull/1771

I haven’t tried yet.

1 Like

Just saw, that it is already working in the standard distribution. Here is some code to open two windows and display stuff:

using GLMakie
GLMakie.activate!()
display(GLMakie.Screen(), scatter(10.0 .* rand(10,2)))
display(GLMakie.Screen(), scatter(10.0 .* rand(10,2), color=:red))

This creates two windows, each interactive with its own content.

8 Likes