-
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
You can switch off lighting to have a uniform color. Try
and from vedo import *
pc = Points(dataurl+"debug.ply")
print(pc)
print(pc.pointdata["RGB"]) # get the point colors
pc.point_size(20).lighting("off")
show(pc) |
Beta Was this translation helpful? Give feedback.
-
It works! Thank you! |
Beta Was this translation helpful? Give feedback.
-
Well "shadow" is not the right word for it.. "lighting" is :) |
Beta Was this translation helpful? Give feedback.
-
Get it! Thank you very much! |
Beta Was this translation helpful? Give feedback.
You can switch off lighting to have a uniform color. Try
and