me wrote:
> The "rods" are declared in much the same way. My problem is this: I want to
> use a #declare statement to combine each of these objects into one, as so:
Simply wrap all of your objects in a union statement and it will be treated
like a single object. Example -
#declare Podium_All =
union {
object { Main }
object { FrontName }
object { FrontLogo }
object { TopBox }
object { BottomBox }
object { Base }
object { Rods }
}
--
Ken Tyler
Post a reply to this message
|