osg学习(五十九)场景树节点典型例子
Posted hankern
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了osg学习(五十九)场景树节点典型例子相关的知识,希望对你有一定的参考价值。
osg::ref_ptr<osg::Geometry> geometry = new osg::Geometry;
osg::ref_ptr<osg::Vec3Array> vex = new osg::Vec3Array;
vex->push_back(osg::Vec3(-3.0, 0.0, 0.0));
vex->push_back(osg::Vec3(3.0, 0.0, 0.0));
vex->push_back(osg::Vec3(0.0, 5.0, 0.0));
vex->push_back(osg::Vec3(0.0, 0.0, 5.0));
geometry->setVertexArray(vex);
osg::ref_ptr<osg::Vec4Array> colors = new osg::Vec4Array;
colors->push_back(osg::Vec4(1.0, 1.0, 0.0, 0.5));
geometry->setColorArray(colors);
geometry->setColorBinding(osg::Geometry::BIND_OVERALL);
osg::ref_ptr<osg::PrimitiveSet> primitiveSet = new osg::DrawArrays(osg::PrimitiveSet::LINE_LOOP, 0, 4);
geometry->addPrimitiveSet(primitiveSet);
geode->addDrawable(geometry);
以上是关于osg学习(五十九)场景树节点典型例子的主要内容,如果未能解决你的问题,请参考以下文章
探索未知种族之osg类生物---状态树与渲染树以及节点树之间的关系
osg学习(五十七)double declaration in gles osg_ModelViewProjectionMatrix