POVRay“轮廓线”质地
有人可以告诉我如何使用 POVRay 纹理执行以下操作...
//PseudoCode
texture {
pigment {
if(y mod 5 == 0) {
color rgb 0
} else {
color rgb 1
}
}
}
即 - 我想要获得等高线
Can someone please tell me how I can do the following with a POVRay texture...
//PseudoCode
texture {
pigment {
if(y mod 5 == 0) {
color rgb 0
} else {
color rgb 1
}
}
}
ie - I want to get the equivalent of Contour lines
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用简单的渐变?
Why not use a simple gradient?