POV-Ray : Newsgroups : povray.general : ERROR: blob seems to be no object identifier : Re: ERROR: blob seems to be no object identifier Server Time
29 Jul 2024 04:32:54 EDT (-0400)
  Re: ERROR: blob seems to be no object identifier  
From: MichaelJF
Date: 31 Jan 2013 14:50:01
Message: <web.510aca86baf748952f465fd30@news.povray.org>
The idea behind it is that you can use your object again and again in a scene
without having to define it every time. E.G.:

#declare Zufall=seed(317);
#declare Count=0;
#while (Count<10)
   object { FH translate <rand(Zufall)*10,0,rand(Zufall)*10> }
   #declare Count = Count + 1;
#end

This would place the object FH ten times at random positions about the origin in
the x-z-plane.

Best regards,
Michael


Post a reply to this message

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