|
发表于 2017-10-27 15:55:26
|
显示全部楼层
这个需要改代码
默认情况下ldview生成的pov文件定义的灯光是这样的
- // Lights
- #ifndef (LDXSkipLight1)
- light_source { // Latitude,Longitude: 45,0,LDXRadius*2
- <0*LDXRadius,-1.414214*LDXRadius,-1.414214*LDXRadius> + LDXCenter
- color rgb <1,1,1>
- }
- #end
- #ifndef (LDXSkipLight2)
- light_source { // Latitude,Longitude: 30,120,LDXRadius*2
- <1.5*LDXRadius,-1*LDXRadius,0.866026*LDXRadius> + LDXCenter
- color rgb <1,1,1>
- }
- #end
- #ifndef (LDXSkipLight3)
- light_source { // Latitude,Longitude: 60,-120,LDXRadius*2
- <-0.866025*LDXRadius,-1.732051*LDXRadius,0.5*LDXRadius> + LDXCenter
- color rgb <1,1,1>
- }
- #end
复制代码 这里有三个光源,所以看起来像是光线错误
你只需要删掉其中两个就行了
- // Lights
- #ifndef (LDXSkipLight1)
- light_source { // Latitude,Longitude: 45,0,LDXRadius*2
- <0*LDXRadius,-1.414214*LDXRadius,-1.414214*LDXRadius> + LDXCenter
- color rgb <1,1,1>
- }
- #end
复制代码
还有,默认光源形成的是硬阴影,要改成软阴影只需要加两行代码
- area_light 200, 200, 10, 10
- jitter
复制代码 所以修改后的灯光代码是
- // Lights
- #ifndef (LDXSkipLight1)
- light_source { // Latitude,Longitude: 45,0,LDXRadius*2
- <0*LDXRadius,-1.414214*LDXRadius,-1.414214*LDXRadius> + LDXCenter
- color rgb <1,1,1>
- area_light 200, 200, 10, 10
- jitter
- }
- #end
复制代码 更多的教程你可以参考这个网站
https://www.eurobricks.com/forum ... dels-using-pov-ray/
|
-
|