POV-Ray : Newsgroups : povray.beta-test : merge working like union : merge working like union Server Time
24 Apr 2024 03:44:07 EDT (-0400)
  merge working like union  
From: Slime
Date: 18 Apr 2005 21:17:47
Message: <42645c3b@news.povray.org>
It seems that the merge{} structure doesn't elliminate internal surfaces as
it should; see this scene:

camera {
 location -10*z
 look_at z
}
merge {
 sphere {x,2}
 sphere {-x,2}
 pigment {rgbt .9}
 finish {ambient 1}
}

Manually constructing the merge doesn't work either:

intersection {
 sphere {x,2 inverse}
 sphere {-x,2 inverse}
 pigment {rgbt .9}
 finish {ambient 1}
 inverse
}

Although if you remove the final 'inverse,' you do get the inverse of the
result you want.

 - Slime
 [ http://www.slimeland.com/ ]


Post a reply to this message

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