POV-Ray : Newsgroups : povray.binaries.scene-files : Animation Example Server Time
19 May 2024 13:25:33 EDT (-0400)
  Animation Example (Message 1 to 1 of 1)  
From: TechnoMage
Subject: Animation Example
Date: 6 Nov 1997 18:07:00
Message: <34624D94.69DD@mindless.com>
This is a simple example of how to make a simple animation....
I hope that this helps people.....
there is also an example of what you should get callded box.gif...
(after you run it through a gif animator that is..)

-- Start POV-Ray Scene File --

//POV-Ray Scene Showing how to use the clock feature for animation
//Original Scene by Ken Cecka <cec### [at] televarmoc>
//Modified by TechnoMage <tec### [at] mindlesscom>
//Date:Wed, 5 Nov 1997
//Command Line parameter needed is "+KFF30", this tells it to render 30
times

//Standard Includes
#include "colors.inc"

//Basic Camera
camera {
location <5,5,5>
look_at <0,0,0>
}

//Let there be Light
light_source {
<20,20,20>
color White
}


//Make a box 
box
{
  <-1, -1, -1>  // one corner 
  < 1,  1,  1>  // other corner 

//Color it Red
pigment {Red}

//Rotate around the y axis
rotate <0,360*clock,0>
}

--- End of POV-Ray Scene File --


Post a reply to this message


Attachments:
Download 'box.gif' (9 KB)

Preview of image 'box.gif'
box.gif


 

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