POV-Ray : Newsgroups : povray.binaries.images : The Chronicles of Ziklag : Re: The Chronicles of Ziklag Server Time
3 Aug 2024 16:20:38 EDT (-0400)
  Re: The Chronicles of Ziklag  
From: Kirk Andrews
Date: 22 Apr 2010 10:21:22
Message: <4bd05b62$1@news.povray.org>
Thorsten wrote:
> I like it :))

Thanks!

> May I beg for some lines of code, petty please :))
> 
> Greetings :))
> 
> Thorsten

Since you begged...

#declare Text1 =
function {
   pigment {
     image_map {
       png "Chronicles-of-Ziklag.png"
       map_type 0
       interpolate 2
     } // image_map
   }
}

#declare Text2 =
function {
   pigment {
     image_map {
       png "Chronicles-of-Ziklag-Blur.png"
       map_type 0
       interpolate 2
     } // image_map
   }
}


#declare T3 =
function {
   Text1(x,y,z).hf*.85 + Text2(x,y,z).hf*.15
}


#declare CZ =
height_field {

   function 4800, 1600 {
     T3(x,y,z)
   }
   water_level .25
   smooth
   hollow
}


Post a reply to this message

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