POV-Ray : Newsgroups : povray.text.scene-files : thin hf + scaled-down stone Server Time
30 Jun 2024 04:06:52 EDT (-0400)
  thin hf + scaled-down stone (Message 1 to 1 of 1)  
From: Jaime Vives Piqueres
Subject: thin hf + scaled-down stone
Date: 7 Aug 2002 07:55:00
Message: <3d510a93@news.povray.org>
--->8---------------
// thin hf + scaled-down stone
#version 3.5;
#include "colors.inc"
#include "textures.inc"
#include "stones.inc"

union{
 height_field{
  function 512,512{
   pigment{
    // replace with the pattern and map of your choice
    granite
    turbulence .3
    color_map{
     [0 Black]
     [1 White] 
    }
    scale .3
   }
  }
  translate -.5
  rotate -90*x
  scale <128,128,.5>
  translate 64*x
 }
 box{-.5,.5
  scale <128,128,.5>
  translate -64*x
 }
 texture{
  // replace with the stone you like the most... 
  T_Stone21
  scale <150,150,.5>
 }
}

light_source{
 <100,100,-150>
 White+Gold*.5
}

camera{
 location <0,0,-300> 
 direction 2.5*z
 look_at 0
}

--->8---------------------

-- 
Jaime Vives Piqueres

La Persistencia de la Ignorancia
http://www.ignorancia.org


Post a reply to this message

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