POV-Ray : Newsgroups : povray.binaries.images : Worship image - Sphere.jpg(192Kbu) : Re: Worship image - Sphere.jpg(192Kbu) Server Time
19 Aug 2024 02:29:38 EDT (-0400)
  Re: Worship image - Sphere.jpg(192Kbu)  
From: Ben Lauritzen
Date: 3 Feb 2001 11:00:30
Message: <3a7c2b1e@news.povray.org>
> Thant helps me a little, but over all I still cant get it to work ??
> anyother help that you might be able to give on it would help me a little.

This is the code for the glows in the center, not the ones coming down from
the spheres.

#version unofficial MegaPov 0.6;
$seed1=seed(123456);
$POWER=.005;
$POWER1=5;
$fad=.8;
$Inc_Number = 0;
#while (Inc_Number < 100)
  $Inc_Number = Inc_Number+.25;
  $Mult=(rand(seed1)*(1-Inc_Number/100))*2;

$loc=<(-.2+(rand(seed1)*.4))+2,-10+(rand(seed1)*.1)+(Inc_Number/6),(-.2+(ran
d(seed1)*.4))>;
  $rot=(Inc_Number*3.6*.6);
  glow{
    type 0
    location loc
    size rand(seed1)*POWER
    radius POWER1
    fade_power fad
    color <1,.5,.1>*Mult
    rotate <0,60+rot,0>
  }
  glow{
    type 0
    location loc
    size rand(seed1)*POWER
    radius POWER1
    fade_power fad
    color <1,1,.1>*Mult
    rotate <0,120+rot,0>
  }
  glow{
    type 0
    location loc
    size rand(seed1)*POWER
    radius POWER1
    fade_power fad
    color <.1,1,.1>*Mult
    rotate <0,180+rot,0>
  }
  glow{
    type 0
    location loc
    size rand(seed1)*POWER
    radius POWER1
    fade_power fad
    color <.1,.1,1>*Mult
    rotate <0,-120+rot,0>
  }
  glow{
    type 0
    location loc
    size rand(seed1)*POWER
    radius POWER1
    fade_power fad
    color <1,.1,1>*Mult
    rotate <0,-60+rot,0>
  }
#end


Post a reply to this message

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