POV-Ray : Newsgroups : povray.programming : animation? : animation? Server Time
5 Jul 2024 15:05:33 EDT (-0400)
  animation?  
From: TIMSAH BEYINLI
Date: 18 Apr 2003 16:11:24
Message: <3ea05bec@news.povray.org>
I am using that code... I just copy and past it from the documentation.

There is no animation... why?




#include "colors.inc"


  camera {
    location <0, 3, -6>
    look_at <0, 0, 0>
  }
  light_source { <20, 20, -20> color White }
  plane {
    y, 0
    pigment { checker color White color Black }
  }
  sphere {
    <0, 0, 0> , 1
    pigment {
      gradient x
      color_map {
        [0.0 Blue  ]
        [0.5 Blue  ]
        [0.5 White ]
        [1.0 White ]
      }
      scale .5
    }
    rotate <0, 0, -clock*360>
    translate <-pi, 1, 0>
    translate <2*pi*clock, 0, 0>
  }


Post a reply to this message

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