nmwsharp / polyscope

A C++ & Python viewer for 3D data like meshes and point clouds
https://polyscope.run
MIT License
1.76k stars 190 forks source link

Subplots support #273

Open royvelich opened 4 months ago

royvelich commented 4 months ago

Hi, Does polyscope support subplots? That is, rendering multiple independent scenes, each inside its own frame (but within the same window). Something similar to this feature of pygfx. If there is no support, I would be happy to implement it, if possible (both for C++ and Python).

nmwsharp commented 3 months ago

Nope, no subplot support currently.

I'm open to adding such a feature, but it would require some deep changes to Polyscope's internals. I'd only be willing to merge a PR if we can implement it cleverly without making a mess of the internals :) If you actually plan to implement this, I'd encourage checking in early to make sure your proposed design makes sense.

royvelich commented 1 month ago

@nmwsharp I want to implement it. Do you have any tips on where I should start looking?