POV-Ray : Newsgroups : povray.binaries.images : Corrugated Roofing : Re: Corrugated Roofing Server Time
9 Aug 2024 17:15:28 EDT (-0400)
  Re: Corrugated Roofing  
From: Aaron Gillies
Date: 28 Dec 2004 20:39:36
Message: <41d20ad8$1@news.povray.org>
I'm not sure that this is exactly what you are after, but can you use a 
height field and an internal bitmap?

Here is an example:

camera {
   location <0, 0, -200>
   look_at <0, 0, 0>
   rotate <45, -45, 0>
   }

light_source {
   <-2000, 4000, -3000>
   color rgb 2
   }

height_field {
   function 400, 400 {
     pattern {
       marble
       turbulence .075
       scale .25
       }
     }
   translate <-.5, 0, -.5>
   scale <100, 10, 100>
   texture {
     pigment {
       color rgb .5
       }
     finish {
       specular .5
       roughness .005
       reflection { 1, 1 }
       }
     }
   }

sphere {
   <0, 40, 0>
   20
   texture {
     pigment {
       color rgb <.75, 0, 0>
       }
     finish {
       specular 1
       roughness .005
       reflection .25
       }
     }
   }

Not exactly perfect, but it is something to work from.


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.