POV-Ray : Newsgroups : povray.general : CSG mesh bug : Re: CSG mesh bug Server Time
4 Aug 2024 16:08:15 EDT (-0400)
  Re: CSG mesh bug  
From: Jozef Gatial
Date: 27 Mar 2003 07:00:09
Message: <web.3e82e6c39c39944c76ced8e90@news.povray.org>
Inside_vector is point defined where is interior of mesh but it is probably
not fully function (in this example only value <0, 0, 0> show differences).
Mesh and mesh2 are fully function in CSG operations when they are combined
with some other objects. Problem is only with two meshes
Jozef



#declare Object2 = sphere { <0, 0 0> 1 }

// A - ok
difference
{
object { Object2 material { Object1Material2 } scale .5 rotate <45,45,45>
translate <.5,0,0>}
object { Object1 material { Object1Material1 } scale .5 rotate <45,45,45>
translate <-.5,0,0>}
}

// B - ok
/*
difference
{
object { Object1 material { Object1Material2 } scale .5 rotate <45,45,45>
translate <.5,0,0>}
object { Object2 material { Object1Material1 } scale .5 rotate <45,45,45>
translate <-.5,0,0>}
}
*/

// A + B - error


Post a reply to this message

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