
我想从里面剪一块,这样我就能看到里面。为此,我使用了一个具有以下3个框的交叉口:
union {
box { <0,0,0> <-100,-100,100>
texture {
pigment {
color
<1,0,0>
}
}
}
box {<0,0,0> <100,-100,100>
texture {
pigment {
color
<1,0,0>
}
}
}
box { <0,0,0> <-100,100,100>
texture {
pigment {
color
<1,0,0>
}
}
}
} 然后,它看起来如下(文件):

我想摆脱的部分是“消失”,但它是不透明的。我怎么让POV-射线看进圆锥体?
发布于 2018-03-27 08:40:59
交叉口不是用来做这个的。它们被设计成一个实体(从而创造了一个新的表面)。
您必须使用"clipped_by“属性。这里有更多细节:
链接
https://stackoverflow.com/questions/49492051
复制相似问题