osg例子osgpick的一些知识点的理解

在例子“osgpick”中,有一段类似下面的代码  
   if (view->computeIntersections(x, y, intersections))
          {
              osgUtil::LineSegmentIntersector::Intersection intersection = *intersections.begin();
              osg::NodePath& nodePath = intersection.nodePath;
              //得到选择的物体
              node = (nodePath.size()>=1)?nodePath[nodePath.size()-1]:0;
              parent = (nodePath.size()>=2)?dynamic_cast<osg::Group*>(nodePath[nodePath.size()-2]):0;
          }       


这段代码中 if 判断从当前 camera 的角度及屏幕点确定的射线是否与场景中的物体相交,返回的 intersections , 即是相交的物体的集合.

每个 intersections 的元素是一个 vector , 从下标0至vector最后,是在这个交集中从大到小与这条射线发生相交的node,这个 vector 最后一个元素是是被选中的这个物体(geode) , 也即代码中的nodePath[nodePath.size()-1] .


参考:http://lists.openscenegraph.org/pipermail/osg-users-openscenegraph.org/2007-September/002055.html
http://cart033.blog.163.com/blog/static/68760122201212003510619/


而下段代码中,

const osgUtil::LineSegmentIntersector::Intersection::IndexList& vil = hitr->indexList;
for(unsigned int i=0;i<vil.size();++i)
{
    os<<"        vertex indices ["<<i<<"] = "<<vil[i]<<std::endl;
}

indexList是片元的顶点信息,即获得相交对象后,取得此对象的顶点数组,indexList中的数,即为这个片元的顶点坐标下标。

参考:http://www.haogongju.net/art/884120

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值