POV-Ray : Newsgroups : povray.tools.general : Creating Timelines Server Time
2 May 2024 15:11:13 EDT (-0400)
  Creating Timelines (Message 1 to 1 of 1)  
From: DocJunioR
Subject: Creating Timelines
Date: 12 Nov 2004 07:15:01
Message: <web.4194a8f4695042596cebd8020@news.povray.org>
I never made very complex animations using POV - until now.
Because of my last one

http://www.emco-systems.de/trash/pinball1.avi

I got the idea of a program which is able to create a functional timeline in
POV.

look at this example:

/******************************************
 * timeline clock = 0.0 - 11.0
 ******************************************
 * 0-|-1-|-2-|-3-|-4-|-5-|-6-|-7...
 * |-----walk------|-stop--|
 * |--look around--|
 * |   |   |   |   |camzoom|
 * ...
 ******************************************/


The programm should be able to create something like this :

#switch (clock)
# range(0,4)
  walk(clock-0)
  look_around(clock-0)
#break
#range (4,6)
  ...
#break
....
#end

/************* MACROS ****************/

#macro walk(myclk)
 /*place code here */
#end


#macro look_around(myclk)
 /*place code here */
#end

Do you think this kind program is useful? If so, is there anyone who'll help
me to program this?


Post a reply to this message

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