POV-Ray : Newsgroups : povray.binaries.images : Droid w/ Scooter. : Re: Droid w/ Scooter. Server Time
2 Oct 2024 08:18:41 EDT (-0400)
  Re: Droid w/ Scooter.  
From: Tor Olav Kristensen
Date: 22 May 2000 11:12:25
Message: <39294E16.7B9F4C55@online.no>
Tor Olav Kristensen wrote:

> Moon47 wrote:
> > BTW, How did you make the back ground in your previous Torus Clutter image ?
>
> I'll post the code for that as soon as I get to my PC at work.

See code below.

(Note that the camera is inside a sphere.)


Regards,

Tor Olav
--
mailto:tor### [at] hotmailcom
http://www.crosswinds.net/~tok/tokrays.html


#version 3.1;
#include "colors.inc"

sphere {
  0, 200
  texture {
    normal {
      granite
      turbulence 1/21
      frequency 1
      octaves 2
      omega 0.2
      lambda 0.1
    }
    pigment {
      granite
      color_map {
        [0.0 color Black]
        [0.5 color Red/1.5 ]
        [1.0 color Yellow ]
      }
      turbulence 1/21
      frequency 1
      octaves 2
      omega 0.2
      lambda 0.1
    }
    finish {
      specular 0.1
    }
    scale 198
    rotate 60*y
  }
}

light_source {
  <-12.6, 9.4, 3.1>
  color White*1.2
}

camera {
  location 16*<1, 1, 1>
  look_at -1.5*y
  angle 55
}


Post a reply to this message

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