POV-Ray : Newsgroups : povray.text.scene-files : lissajous Server Time
19 Apr 2024 04:21:44 EDT (-0400)
  lissajous (Message 1 to 1 of 1)  
From: SK68
Subject: lissajous
Date: 23 Jul 2009 08:10:00
Message: <web.4a6852f9ebca00e555adc7130@news.povray.org>
// Lissajous
#include "colors.inc"
background{color rgb 1}
light_source{<25,50,-100> color rgb 1}
camera{
        location<0,0,-3>
        look_at 0
        up y
        right image_width/image_height*x
}
// A= zwischen 1 und 5
// B= zwischen 1 und 5
#local A=5;
#local B=3;
#declare T=0;
#while (T<=2)
        sphere{<sin(A*T*pi),cos(B*T*pi),0>,.01 pigment{Black}}
        #declare T=T+.0001;
#end


Post a reply to this message

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