Re: [osg-users] Some 'osg::Geode' that can be transformed should be made as 'osg::MatrixTransform'?

2008-05-06 Thread Vincent Bourdier
1.Yes it it correct. 2.just reply to the mail (or reply to the reply), OSG list do the rest... 2008/5/6 Jeongseok Lee <[EMAIL PROTECTED]>: > Hi, Gordon and Vincent! > > Thanks for answering my question. > > > > I designed as following. > > > > class XGLink : public osg::MatrixTransform > > { …

Re: [osg-users] Some 'osg::Geode' that can be transformed should be made as 'osg::MatrixTransform'?

2008-05-06 Thread Jeongseok Lee
Hi, Gordon and Vincent! Thanks for answering my question. I designed as following. class XGLink : public osg::MatrixTransform { . } After that, I wanna add some drawables into XGLink. But XGLink is not a Geode. (osg::Drawable is can be add to only Geode) So, I need to addChild (new Geo

Re: [osg-users] Some 'osg::Geode' that can be transformed should be made as 'osg::MatrixTransform'?

2008-05-06 Thread Vincent Bourdier
Hi, osg::group inherit from osg::node, so a group is a node. Is it your question ? or it is more complicated ? 2008/5/6 Jeongseok Lee <[EMAIL PROTECTED]>: > Hi all. > > This is my first question to all of you. > > So, it's very naive question. J > > > > I'm developing 3D robot dynamics simulat

[osg-users] Some 'osg::Geode' that can be transformed should be made as 'osg::MatrixTransform'?

2008-05-06 Thread Jeongseok Lee
Hi all. This is my first question to all of you. So, it's very naive question. J I'm developing 3D robot dynamics simulator. There are links of robot in that simulator. And the links can move (transform). So I used 'osg::MatrixTransform'. But this a kind of osg::Group. I wanna make link as '