POV-Ray : Newsgroups : povray.text.scene-files : Spaceship Of The Week v1.0 (SOTW) Server Time
14 May 2024 08:57:04 EDT (-0400)
  Spaceship Of The Week v1.0 (SOTW) (Message 1 to 3 of 3)  
From: POVMAN
Subject: Spaceship Of The Week v1.0 (SOTW)
Date: 8 May 2006 03:28:09
Message: <445ef309@news.povray.org>
Attached a zip of the text files for the first version of space ship of the 
week.  Sample images in p.b.i .

The ini file can be used to render a number of samples, however you need to 
edit the sotw.pov file and change the seed value to be "clock".
-- 
#####-----#####-----#####
POV Tips and Hints at ...
http://povman.blogspot.com/


Post a reply to this message


Attachments:
Download 'SOTW.Zip' (6 KB)

From: Mike Williams
Subject: Re: Spaceship Of The Week v1.0 (SOTW)
Date: 8 May 2006 05:47:30
Message: <KGZBOHAHKxXEFwDQ@econym.demon.co.uk>
Wasn't it POVMAN who wrote:
>Attached a zip of the text files for the first version of space ship of the 
>week.  Sample images in p.b.i .
>
>The ini file can be used to render a number of samples, however you need to 
>edit the sotw.pov file and change the seed value to be "clock".

Two little suggestions:

1. If you reset the seed before each section, then it becomes possible
to render a few samples quickly with the dev settings, then change to
the final settings and get the same ship. At present, changing the
lighting means that different numbers of random numbers are called from
the random number stream, so all the following code gets different
values for their random numbers, and produce completely different
results.

Something like this:
#declare SEED = 1951;
#declare rStream = seed(SEED);
...
// background
#declare rStream = seed(SEED);
#include "SOTWStarField.inc"
...
// get basic hull shape 
#declare rStream = seed(SEED);
#include "SOTWBasicHull.inc"
...
// decorate the hull with widges
#declare rStream = seed(SEED);
#include "SOTWWidges.inc"          
...
// create a full ship texture
#declare rStream = seed(SEED);
#include "SOTWTexture.inc" 


2. pov.binaries.scene-files is more appropriate for binaryfiles.

-- 
Mike Williams
Gentleman of Leisure


Post a reply to this message

From: POVMAN
Subject: Re: Spaceship Of The Week v1.0 (SOTW)
Date: 8 May 2006 08:53:20
Message: <445f3f40@news.povray.org>
> 1. If you reset the seed before each section, then it becomes possible
> to render a few samples quickly with the dev settings, then change to
> the final settings and get the same ship.>

very good idea


> 2. pov.binaries.scene-files is more appropriate for binaryfiles.

doh!

> Mike Williams
> Gentleman of Leisure

"Leisure"?  Thats near Paris, isn't it?


-- 
#####-----#####-----#####
POV Tips and Hints at ...
http://povman.blogspot.com/


Post a reply to this message

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