POV-Ray : Newsgroups : povray.binaries.images : Re: Macro stuff : Re: Macro stuff Server Time
20 Aug 2024 04:17:41 EDT (-0400)
  Re: Macro stuff  
From: Bill DeWitt
Date: 4 Oct 2000 08:12:35
Message: <39db1eb3@news.povray.org>
#include "colors.inc"
#version unofficial MegaPov 0.6;
camera{location <0,25,-70> look_at y*25}
// light_source{0, White translate <10,10,-50>}
// sky_sphere{pigment{White}}

#declare R = seed(334523);
#declare y_count = 1;
#while (y_count < 50)
  #declare z_trans = 5+((y_count/10)*(y_count/10));
  #declare y_rot = rand(R) * 360;
  glow{
           location y_count*y
           size (0.5 + rand(R))/1250
           color rgb<0.25 + rand(R), 0.25 + rand(R), 0.25 + rand(R)>
           translate z * (z_trans * (1 + rand(R)/5)) rotate y*y_rot
       }
  #declare y_count = y_count + 0.2;
#end

--
The need for speed is great - Ken Tyler
"ian" <ian### [at] aolcom> wrote in message
news:39db06b7$1@news.povray.org...
> 'The Secret Of NIMH'
>
> Mr. DeWitt,
> I'd like the source to that modified image, if its not trouble.
>
> Hi.
> I'm Ian, and I'm a sourcecode addict..
>
> Tom Melly wrote in message <39daed53@news.povray.org>...
> >Ooo, a sparkly. (another movie quote;)
>
>


Post a reply to this message

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