POV-Ray : Newsgroups : povray.newusers : problem intersection or difference : Re: problem intersection or difference Server Time
29 Jul 2024 02:27:20 EDT (-0400)
  Re: problem intersection or difference  
From: Mark Birch
Date: 16 Nov 2006 18:35:00
Message: <web.455cf4799bdb3fe54daddc090@news.povray.org>
You don't need the extra 'object' wrapper around your #declared objects...

#declare MyBox1 = object { box { <-1, -1, -1>, <1, 1, 1> inverse }  }

could be written as

#declare MyBox1 = box { <-1, -1, -1>, <1, 1, 1> inverse }

It will still work the same when used as

object{MyBox1}

It has nothing to do with your 'problem' though...


Post a reply to this message

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