|
|
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
|
|