POV-Ray : Newsgroups : povray.general : multiple object duplication factoring question : Re: multiple object duplication factoring question Server Time
4 Aug 2024 06:10:21 EDT (-0400)
  Re: multiple object duplication factoring question  
From: ABX
Date: 11 Jul 2003 10:59:35
Message: <7vjtgvsv7pm5rvhp1i8shlv934k7a6q3gd@4ax.com>
On Fri, 11 Jul 2003 09:54:04 -0500, "Steve Shelby" <ssh### [at] rexnetnet> wrote:
>object is scale 1, the second is scale 1.04, trans .01*X.

#local ObjectOrg = object{ ... }
#local Object = ObjectOrg;
#local Counter = 0;
#while (Counter<Iterations)
  #local Object = union{
    object{ ObjectOrg }
    object{ Object scale 1.04 translate .01*X}
  }
  #local Counter = Counter + 1;
#end

> any of you have any suggestions?

helped ?

ABX


Post a reply to this message

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