|
|
> // Back Wall
> difference{
> box{
> <-10,0,-12>,<10,10,-13>
> texture{
> Wall_Texture
> }
> }
> box{
> <-11,0,-8><9,8,-4>
> texture{
> pigment{
> color White
> }
> }
> translate y*6
> }
> }
The box you are trying to cut out of the back wall does not intersect the
wall
you want the cutout box to be slightly thicker than the wall
the box you are trying to remove is located between the z coordinates -4
and -8 while the wall is between -12 and -13 i.e., they don't intersect
you wall is <-10,0,-12>,<10,10,-13> (20w x 10h x 1t)
try this box for your window:
<-2,2,-11><2,6,-14>
this will cutout a window 4x4 units in the middle of the back wall
-tgq
Post a reply to this message
|
|