|
|
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
|
|
|
|
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
|
|