polyscope icon indicating copy to clipboard operation
polyscope copied to clipboard

A C++ & Python viewer for 3D data like meshes and point clouds

Results 144 polyscope issues
Sort by recently updated
recently updated
newest added

This PR adds the following functionalities: + Instanced Rendering + fixed: you can now specify how many vertices are computed per instance + added divisor to attributes so that you...

Hey, I'm running into issues with getting parameterized data loaded from geometry central. It seems that the permutations for the corners aren't being set correctly. I've verified that the "polyscopePermutations"...

Thank you for your amazing work. I know this is a lot to ask but I think it would be really useful to have https://github.com/epezent/implot for making some plots to...

Thank you for creating this amazing tool! I've noticed that the visualization quality significantly degrades when using headless rendering mode. I suspect this is due to antialiasing not being applied...

Once again, thanks for the great library! I noticed the docs say that volume meshes can support hexes and tets, and even a mixture of the two. For the latter...

enhancement
help wanted

I have this simple program: ```cpp #include #include int main() { polyscope::init(); std::vector vertices{{0, 0, 0}, {1, 0, 0}, {1, 1, 0}}; std::vector faces{{0, 1, 2}}; std::vector scalars{0.0, 1.0, 2.0};...

Is there any way to use Polyscope inside a Jupyter notebook and have the render inside the notebook? Something similar to https://github.com/jupyter-widgets/pythreejs

On Windows, I managed to build polyscope as a shared library with a couple of changes: 1. Export all symbols for polyscope ```diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt...

In this new version of polyscope, the window I created using Begin cannot have its size changed by dragging the window border with the mouse, but this was possible in...