POV-Ray : Newsgroups : povray.newusers : Syntax Help : Re: Syntax Help Server Time
29 Jul 2024 08:13:47 EDT (-0400)
  Re: Syntax Help  
From: Warp
Date: 28 Mar 2006 00:59:37
Message: <4428d0c9@news.povray.org>
What you are trying to do is this:

object
{ object { ... }
  object { ... }
  object { ... }
  object { ... }
  object { ... }
}

  That's not possible.

  If you want to make a group of objects, which is then handled as one
object, you have to put them into a union, like this:

union
{ #declare Count = 0;
  #while(Count < 5)
    object { ... }
    #declare Count = Count + 1;
  #end
}

-- 
                                                          - Warp


Post a reply to this message

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