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
When I set Materials and Lights as following strategy: materials = Materials(device=device, ambient_color=((1, 1, 1),), diffuse_color=((1, 1, 1),), specular_color=((1,1,1),), shininess=64, ) lights = PointLights(device=device, location=[[0.0, 0.0, 2.0]], ambient_color=((0.7, 0.7, 0.7),), diffuse_color=((0.3, 0.3, 0.3),), specular_color=((0.3, 0.3, 0.3),), )
I got some highlights in the final render image.
Now, I want to control the appearance of highlights. Can I input a mask which defines location that highlight should appear?