POV-Ray : Newsgroups : povray.general : Disable splash window : Re: Disable splash window Server Time
1 Aug 2024 20:13:42 EDT (-0400)
  Re: Disable splash window  
From: Christoph Hormann
Date: 28 Sep 2005 17:40:02
Message: <dhf2dc$75b$1@chho.imagico.de>
sascha wrote:
> and no, some animations can't
> be rendered using POV's built in "animation" features, e.g. if large
> meshes are generated per frame

This doesn't have anything to do with the original topic but all right, 
for those who didn't know:

When you have a set of scenes

scene_a.pov
scene_b.pov
...
scene_x.pov

and you want to render them all you can *always* do so, no matter how 
large meshes or whatever are generated in those scenes, by rendering the 
following animation:

#switch (frame_number)

   #case (1)
     #include "scene_a.pov"
   #break
   #case (2)
     #include "scene_a.pov"
   #break
   ...
   #case (X)
     #include "scene_x.pov"
   #break

#end

Of course if you use a numerical naming scheme for the scenes you can 
further reduce that to a one-liner but that's just for the lazy...

Christoph

-- 
POV-Ray tutorials, include files, Landscape of the week:
http://www.tu-bs.de/~y0013390/ (Last updated 24 Jul. 2005)
MegaPOV with mechanics simulation: http://megapov.inetart.net/


Post a reply to this message

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