POV-Ray : Newsgroups : povray.binaries.images : Worship image - Sphere.jpg(192Kbu) Server Time
19 Aug 2024 04:18:13 EDT (-0400)
  Worship image - Sphere.jpg(192Kbu) (Message 1 to 10 of 10)  
From: Ben Lauritzen
Subject: Worship image - Sphere.jpg(192Kbu)
Date: 22 Jan 2001 12:13:47
Message: <3a6c6a4b@news.povray.org>
This isn't the newest version, but I don't have a full render of it and I
didn't feel like waiting 4 hours for one.  Not satisfied with it yet.


Post a reply to this message


Attachments:
Download 'Sphere.jpg' (193 KB)

Preview of image 'Sphere.jpg'
Sphere.jpg


 

From: Xplo Eristotle
Subject: Re: Worship image - Sphere.jpg(192Kbu)
Date: 22 Jan 2001 14:59:42
Message: <3A6C9175.F2238E9C@unforgettable.com>
Ben Lauritzen wrote:
> 
> This isn't the newest version, but I don't have a full render of it and I
> didn't feel like waiting 4 hours for one.  Not satisfied with it yet.

Damned if I know what it is, but it looks very cool. :D

-Xplo


Post a reply to this message

From: Ben Lauritzen
Subject: Re: Worship image - Sphere.jpg(192Kbu)
Date: 22 Jan 2001 15:34:10
Message: <3a6c9942@news.povray.org>
> Damned if I know what it is, but it looks very cool. :D
>
> -Xplo

thanks
I haven't thought up a story to go with it yet... my roomate called it "neon
disco"


Post a reply to this message

From: David Fontaine
Subject: Re: Worship image - Sphere.jpg(192Kbu)
Date: 23 Jan 2001 20:52:51
Message: <3A6E3577.23673D0D@faricy.net>
Cool. I was thinking gamma, but it's blacklevel, I can shield the monitor and
it looks much better.

--
David Fontaine  <dav### [at] faricynet>  ICQ 55354965
My raytracing gallery:  http://davidf.faricy.net/


Post a reply to this message

From: Ben Lauritzen
Subject: Re: Worship image - Sphere.jpg(192Kbu)
Date: 24 Jan 2001 11:23:02
Message: <3a6f0166@news.povray.org>
> Cool. I was thinking gamma, but it's blacklevel, I can shield the monitor
and
> it looks much better.

Maybe my monitor is brighter than yours, should I brighten it?


Post a reply to this message

From: David Fontaine
Subject: Re: Worship image - Sphere.jpg(192Kbu)
Date: 24 Jan 2001 18:18:15
Message: <3A6F628C.58E617A@faricy.net>
Ben Lauritzen wrote:

> Maybe my monitor is brighter than yours, should I brighten it?

If you do not by much I think. You can probably leave it.

--
David Fontaine  <dav### [at] faricynet>  ICQ 55354965
My raytracing gallery:  http://davidf.faricy.net/


Post a reply to this message

From: Jason Scott
Subject: Re: Worship image - Sphere.jpg(192Kbu)
Date: 25 Jan 2001 21:22:37
Message: <3a70df6d@news.povray.org>
I like the way that you have the colors going up in the spiral manner. I was
wondering if you could posibly post the code for how you did that.

"Ben Lauritzen" <loo### [at] yahoocom> wrote in message
news:3a6c6a4b@news.povray.org...
> This isn't the newest version, but I don't have a full render of it and I
> didn't feel like waiting 4 hours for one.  Not satisfied with it yet.
>
>
>


Post a reply to this message

From: Ben Lauritzen
Subject: Re: Worship image - Sphere.jpg(192Kbu)
Date: 26 Jan 2001 12:57:44
Message: <3a71ba98@news.povray.org>
> I like the way that you have the colors going up in the spiral manner. I
was
> wondering if you could posibly post the code for how you did that.

It's actually quite simple, It uses the glows in MegaPOV , translates <5,
increasing_number*50, 0> and rotates <0, increasing_number*180, 0>


Post a reply to this message

From: Jason Scott
Subject: Re: Worship image - Sphere.jpg(192Kbu)
Date: 27 Jan 2001 15:12:58
Message: <3a732bca@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.


"Ben Lauritzen" <loo### [at] yahoocom> wrote in message
news:3a6c6a4b@news.povray.org...
> This isn't the newest version, but I don't have a full render of it and I
> didn't feel like waiting 4 hours for one.  Not satisfied with it yet.
>
>
>


Post a reply to this message

From: Ben Lauritzen
Subject: Re: Worship image - Sphere.jpg(192Kbu)
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.