|
osg::ref_ptr<osg::clipNode> clipNide = new osg::ClipNode();
clipNode->addClipPlane(new osg::ClipPlane(0));
clipNode->getClipPlane(0)->setClipPlane(nor.x, nor.y, nor.z, d);
clipNode->setReferenceFrame(osg::ClipNode::RELATIVE_RF);
上述代码设置裁剪平面,对于圆柱几何体,可以裁剪成功,osg中会自动创建平面,将几何体封闭。但是出现的问题是裁剪后,裁剪平面所在位置处的面片在旋转过程中不断闪烁,不知怎么解决这个问题! |
|