polyscope
polyscope copied to clipboard
A C++ & Python viewer for 3D data like meshes and point clouds
**Desired workflow:** The user programmatically configures several "views" of their data, each of which corresponds to a different collection of settings (stuff which is enabled, etc). The user wants to...
Coming back to this issue from last year: https://github.com/nmwsharp/polyscope/issues/139 I copied the same approach from PointCloud and add a function to allow varying the node radius of `CurveNetwork`. The radius...
Hey there, I just downloaded the code for polyscope. As a first starter, I wanted to run the test files so I typed in ` apt-get install xorg-dev libglu1-mesa-dev freeglut3-dev...
I'm trying to use Polyscope on a Virtual Machine (Ubuntu 22.04 running inside an Oracle Virtualbox on Windows 10) However on calling it from Jupyter-lab I get the following problem:...
I'm wondering if I'm using the `updateVertexPositions` and `userCallback` correctly. Currently I'm getting around `260 ms/f (4 FPS)` when I update the positions of a mesh with 262,144 faces inside...
Hi, How you download Polyscope with its main dependencies using CMake ExternalProject command: https://cmake.org/cmake/help/latest/module/ExternalProject.html This is a command that downloads github repository. But it must be setup so that dependencies...
Hi, I would like to have a "drap-n-drop to open file" feature and was wondering if this is sth that should be embedded into the viewer. On `ImGui`'s page, I...
Right now, the only way to implement an animation is via `userCallback`. However, this requires you to put your whole program control flow inside of the callback. We should offer...
This came up when I was preparing the coding assignments for CMU's DDG course. Currently, the element picker picks up on elements of all sorts, including vertices, edges, faces, halfedges....