POV-Ray : Newsgroups : povray.text.scene-files : Re: A scene file... Server Time
29 Jul 2024 02:27:45 EDT (-0400)
  Re: A scene file... (Message 1 to 4 of 4)  
From: Markus Becker
Subject: Re: A scene file...
Date: 18 Dec 1998 05:21:52
Message: <367A2CC2.69AC60A6@zess.uni-siegen.de>
Mark Arrasmith wrote:

> parsed - 20 sec
> rendered - 1600x1200 2m 47sec
: 
> I have a command line version compiled by David Tucker for Windows NT with
> Dec Alpha.  I'm Running on an Alpha 21264PC 533MHz processor.
> 

I know this is a little old, but I just subscribed to the
groups on the POV-Org server. I have a PII 350 MHz and got
the following:

parsed   - 27 sec
rendered - 1600 x 1200 1m 31sec

I would say: F*ck the Alpha... ;-)
Err, or did you use heavy antialiasing?

Markus
-- 
Dipl.-Ing. Markus Becker

Siegen, Germany


Post a reply to this message

From: Hassoun
Subject: Re: A scene file...
Date: 24 May 1999 13:53:43
Message: <37498455.D260B1CB@sympatico.ca>
Hi
povwin gives me an "error: unexpected end of file". (all the #declare
end with ";")
any ideas how to fix this?

thanks
Hassoun



>   Guess what does this calculate? Tell me what do you think :)
>   (Warning, this one parses LONG!)
>
> #declare MinRe=-2
> #declare MaxRe=1
> #declare MinIm=-1
> #declare MaxIm=1
> #declare Iter=20
> #declare XSize=3
> #declare ZSize=2
> #declare ReRes=80
> #declare ImRes=80
> #declare Radius=.03
> #declare Height=.5
> #declare Color=<1,1,0>
>
> camera { location <-3,3,-3> look_at 0 angle 35 }
> light_source { <10,100,-30> color 1 }
>
> //---------------------------------
>
> #declare Im=MinIm
> #declare PosZ=-ZSize/2
> #while (PosZ<=ZSize/2)
>   #declare Re=MinRe
>   #declare PosX=-XSize/2
>   #while (PosX<=XSize/2)
>     #declare Zr=Re
>     #declare Zi=Im
>     #declare bri=1
>     #declare n=Iter
>     #while (n>0)
>       #declare Zr2=Zr*Zr
>       #declare Zi2=Zi*Zi
>       #if (Zr2+Zi2>4)
>          #declare bri=sqrt(1-(n-1)/Iter)
>          #declare n=0
>       #else
>         #declare Zi=2*Zr*Zi+Im
>         #declare Zr=Zr2-Zi2+Re
>         #declare n=n-1
>       #end
>     #end
>     sphere
>     { <PosX,Height*bri,PosZ>,Radius
>       pigment { rgb Color*bri }
>     }
>     #declare Re=Re+(MaxRe-MinRe)/ReRes
>     #declare PosX=PosX+XSize/ReRes
>   #end
>   #declare Im=Im+(MaxIm-MinIm)/ImRes
>   #declare PosZ=PosZ+ZSize/ImRes
> #end


Post a reply to this message

From: Jerome
Subject: Re: A scene file...
Date: 25 May 1999 08:05:24
Message: <374A83F2.FB56F053@iname.com>
Hassoun wrote:
> 
> Hi
> povwin gives me an "error: unexpected end of file". (all the #declare
> end with ";")
> any ideas how to fix this?
> 
> thanks
> Hassoun
> 
	Try adding a carriage return at the end of the file :)

		Jerome

-- 
*******************************

* they'll tell you what can't * mailto:ber### [at] inamecom
* be done and why...          * http://www.enst.fr/~jberger
* Then do it.                 *
*******************************


Post a reply to this message

From: Hassoun
Subject: Re: A scene file...
Date: 28 May 1999 21:54:19
Message: <374F3AF3.9E26C735@sympatico.ca>
thanks, it worked.
Hassoun



> Hassoun wrote:
> >
> > Hi
> > povwin gives me an "error: unexpected end of file". (all the #declare
> > end with ";")
> > any ideas how to fix this?
> >
> > thanks
> > Hassoun
> >
>         Try adding a carriage return at the end of the file :)
>
>                 Jerome
>
> --
> *******************************

> * they'll tell you what can't * mailto:ber### [at] inamecom
> * be done and why...          * http://www.enst.fr/~jberger
> * Then do it.                 *
> *******************************


Post a reply to this message

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