C++学习(三零三)osg绘制直线 折线

Posted hankern

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++学习(三零三)osg绘制直线 折线相关的知识,希望对你有一定的参考价值。

//绘制折线
osg::ref_ptr<osg::Geode> geode = new osg::Geode;
_root->addChild(geode);
//设置顶点数组
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));
osg::ref_ptr<osg::Geometry> geometry = new osg::Geometry;
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));
colors->push_back(osg::Vec4(1.0, 1.0, 0.0, 0.5));
colors->push_back(osg::Vec4(1.0, 1.0, 0.0, 0.5));
colors->push_back(osg::Vec4(1.0, 1.0, 0.0, 0.5));
geometry->setColorArray(colors);
geometry->setColorBinding(osg::Geometry::BIND_PER_VERTEX);
osg::ref_ptr<osg::PrimitiveSet> primitiveSet = new osg::DrawArrays(osg::PrimitiveSet::LINE_LOOP, 0, 4);
geometry->addPrimitiveSet(primitiveSet);
//设置线宽
osg::ref_ptr<osg::LineWidth> lw = new osg::LineWidth(6.0);
geometry->getOrCreateStateSet()->setAttribute(lw, osg::StateAttribute::ON);
geode->addDrawable(geometry);

以上是关于C++学习(三零三)osg绘制直线 折线的主要内容,如果未能解决你的问题,请参考以下文章

C++学习(三零四)osg材质Material使用

C++学习(三零六)osg设置背景颜色

C++学习(三三零)osg的opengl状态机State

C++学习(三零九)osg::VertexArrayState的作用

C++学习(三零八)osg::Geometry的顶点数据上传到GPU的过程

C++学习(四三零)如何查看libtool的执行过程