-
Hi Having trouble updating the renderer with new pointdata in a loop: All these images, should be displaying different data but, as you can see, they are showing the same data. This is what I have so far:
So the idea is that I have three different curvatures and I want each rendered in a seperate subplot. I assumed this is how I would do that in a loop, but I always seem to get the same plot rendered three times. Any ideas where I going wrong? Cheers |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
the problem is that you always use the same pointcloud! So the first 2 renderers are also modified because you modify the same object. |
Beta Was this translation helpful? Give feedback.
-
nice! yes - you can add a
|
Beta Was this translation helpful? Give feedback.
nice!
yes - you can add a
Button
which calls aplt.remove(old_pcl).add(new_pcl)
vedo --search button