POV-Ray : Newsgroups : povray.binaries.images : Work in progress : Re: Work in progress Server Time
4 Oct 2024 03:18:05 EDT (-0400)
  Re: Work in progress  
From: Lewis
Date: 22 Apr 1999 11:03:14
Message: <371F2C91.C65150E1@netvision.net.il>
I only under-scaled it. Here's the code:


height_field
{
  png               // the file type to read
(gif/tga/pot/pgm/ppm/png/sys)
  "\noam\images\hf1.png"     // the file name to read
//  inverse | texture {...}
  smooth
//  [water_level N] // truncate/clip below N (0.0 ... 1.0)
// translate VECTOR | rotate VECTOR | scale VECTOR
	scale <1,0.1,1>
	translate <-0.5,-1,-0.5>
 	texture {
 		pigment {
 			bozo
 			color_map {
 				[0.2 rgb 0.5]
 				[0.3 rgb 0.32]
 				[0.5 rgb 0.4]
 				[0.7 rgb 0.6]
 				[1.0 rgb 0.5]
 			}
 			turbulence 0.1
 			scale 0.1
 		}
 		normal {
 			wrinkles 1
 		}
 	}
}


Post a reply to this message

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