polyscope-py
polyscope-py copied to clipboard
Python bindings for Polyscope
(and docs too) https://github.com/nmwsharp/polyscope/pull/190
First of all thank you @nmwsharp so much for this super beautiful visualization library cpp+python! I wanted to ask how a few things which I fail to find the documentation...
Hi @nmwsharp ! Thanks for this amazing package! I'm currently designing a tool that is using Polyscope and makes heavy use of keyboard controls. For that, it would be invaluable...
This is a common request from folks using Polyscope for research figures. Make sure we have all combinations of get/set view matrix and get/set projection matrix & the respective params....
conda install -c conda-forge polyscope produces ``` Collecting package metadata (current_repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve. Collecting package metadata (repodata.json): done Solving environment:...
Right now the following code results in segfault: ```python import polyscope as ps import numpy as np ps.init() cloud = ps.register_point_cloud("my cloud", np.random.rand(100,3)) ps.remove_point_cloud("my cloud") cloud.add_scalar_quantity("my scalar", np.random.rand(100)) # boom!...
Right now, failing to call `ps.init()` manifests as a segfault. Add nice sanity checks at least on the `register()` functions so we give better errors.