-
Hi Marco, hope you are well! I would like to be able switch between views of my pointcloud coloured for my classification or curvature (with the curvature option having an accompanying I also want to be able to turn the normals of the points on or off. You gave me a previous answer using a button to call
Is this the most efficient way of doing this or can I use the If I use the Thanks, hope you had a good weekend! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, you can add and remove any item(s) with Another option is to switch on and off an object visibility with: For the scalarbar you may need to extract it from the associated mesh and handle it like any other vedo object: Give it a try! |
Beta Was this translation helpful? Give feedback.
Hi, you can add and remove any item(s) with
plotter.remove(some_list).add(some_other_list)
(probably you want to do this in a callback function)
Another option is to switch on and off an object visibility with:
myobject.on()
myobject.off()
For the scalarbar you may need to extract it from the associated mesh and handle it like any other vedo object:
myscalarbar = mymesh.scalarbar
Give it a try!