POV-Ray : Newsgroups : povray.binaries.animations : The Eternal Student - Question again: Loop : The Eternal Student - Question again: Loop Server Time
20 Apr 2024 05:25:57 EDT (-0400)
  The Eternal Student - Question again: Loop  
From: Sven Littkowski
Date: 28 Jan 2018 19:09:41
Message: <5a6e6645$1@news.povray.org>
For some reason, my loop doesn't produce many items as intended, only
one. And I am sure, as usual I am not seeing the forest because of all
the trees in front of my eyes!  :-D


#declare MyRandom = seed (27053);
#local MyLength   = int(20*rand(MyRandom));   // Anzahl der Glieder
#local MyX        = rand(MyRandom)*45;
#local MyY        = rand(MyRandom)*1;
#local MyZ        = rand(MyRandom)*10;
#local MyElement  = 0;

#while (MyElement<MyLength)
 object { Element translate < 0.0, 0.0, 0.45 > rotate < MyX, MyY, MyZ > }
 #local MyX        = rand(MyRandom)*45;
 #local MyY        = rand(MyRandom)*1;
 #local MyZ        = rand(MyRandom)*10;
 #local MyElement  = MyElement+1;
#end


Post a reply to this message

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