#ifndef SYSTEMGROUPNODE_H #define SYSTEMGROUPNODE_H #include #include class SystemGroupNode : public osg::Group { public: SystemGroupNode(); osg::ref_ptr& allocentricMap(void); osg::ref_ptr& rollingMap(void); osg::ref_ptr& egocentricMap(void); osg::ref_ptr& position(void); osg::ref_ptr& attitude(void); private: osg::ref_ptr createAxisGeode(void); osg::ref_ptr mAllocentricMap; osg::ref_ptr mRollingMap; osg::ref_ptr mEgocentricMap; osg::ref_ptr mPosition; osg::ref_ptr mAttitude; }; #endif // SYSTEMGROUPNODE_H