org-arl / InteractiveViz.jl

Interactive visualization tools for Julia
MIT License
109 stars 6 forks source link

Support for Multiple Windows #19

Closed tkgunaratne closed 1 year ago

tkgunaratne commented 2 years ago

This seems to be a great Julia package for plotting large number of points really fast. I've noticed that GLMakie allow multiple plot windows. I wonder InteractiveViz.jl too support this?

mchitre commented 2 years ago

I haven't looked at multiple windows support in GLMakie. Will take a look.

mchitre commented 1 year ago

This works:

using GLMakie
using InteractiveViz
display(GLMakie.Screen(), ilines(sin, 0, 100).fap)
display(GLMakie.Screen(), ilines(cos, 0, 100).fap)

So all that remains is to clean up the API to avoid the .fap

mchitre commented 1 year ago

Fixed. This now works:

using GLMakie
using InteractiveViz
display(GLMakie.Screen(), ilines(sin, 0, 100))
display(GLMakie.Screen(), ilines(cos, 0, 100))