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