cs481-ekh / s24-slice-n-dice

MIT License
1 stars 1 forks source link

Make 2d slice graphs interactive #179

Closed BraydenThompson closed 7 months ago

BraydenThompson commented 7 months ago

References #176

Attach the location of the 2d slices within the 3d data to the existing ipyvolume sliders, and be able to update both with the same slider in real time for all 3 axes.

BraydenThompson commented 7 months ago

Researched how to attach existing sliders to matplotlib plots, it took a while to figure out how to hide the auto-generated sliders created by the interact function. The solution ended up being to use interactive_output, which returns the graph without the slider widgets, then a separate display call for the graph. Created PR.

[t:45]