多自由度机械臂模拟2

江枫思渺然 提交于 2019-11-28 13:34:42
osg::ref_ptr<osg::Geode> rope1 = CreateCylinder(0, 0, 7, 0.1f);
osg::ref_ptr<osg::Geode> rope2 = CreateCylinder(0, 0, 8, 0.1f);
osg::ref_ptr<osg::Geode> rope3 = CreateCylinder(0, 0, 9, 0.1f);
osg::ref_ptr<osg::Geode> rope4 = CreateCylinder(0, 0, 10, 0.1f);
osg::ref_ptr<osg::Geode> rope5 = CreateCylinder(0, 0, 11, 0.1f);

groupRope->addChild(rope1.get());
groupRope->addChild(rope2.get());
groupRope->addChild(rope3.get());
groupRope->addChild(rope4.get());
groupRope->addChild(rope5.get());

rotRope = new osg::MatrixTransform;
rotRope->addChild(groupRope.get());
rotateRope1();

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!