You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately, the index of the point over which the cursor is hovering is not returned by pythreejs (a point cloud has no faces), only the coordinate of the cursor is returned.
Performing a where search on all the pixels to find the smallest distance would be too slow, so we would have to use sc.bin to overlay a 3d grid onto the pixel positions, to then find the mininum distance on only the pixels inside the bin.
The text was updated successfully, but these errors were encountered:
See this example in pythreejs: https://github.com/jupyter-widgets/pythreejs/blob/master/examples/Picker.ipynb
Unfortunately, the index of the point over which the cursor is hovering is not returned by pythreejs (a point cloud has no faces), only the coordinate of the cursor is returned.
Performing a
where
search on all the pixels to find the smallest distance would be too slow, so we would have to usesc.bin
to overlay a 3d grid onto the pixel positions, to then find the mininum distance on only the pixels inside the bin.The text was updated successfully, but these errors were encountered: