| 11 | using namespace skybolt::vis; |
| 12 | |
| 13 | DefaultRootNode::DefaultRootNode() : |
| 14 | mSwitch(new osg::Switch), |
| 15 | mTransform(new osg::MatrixTransform) |
| 16 | { |
| 17 | mSwitch->addChild(mTransform); |
| 18 | mTransform->setNodeMask(vis::VisibilityCategory::defaultCategories); |
| 19 | } |
| 20 | |
| 21 | DefaultRootNode::~DefaultRootNode() |
| 22 | { |
nothing calls this directly
no outgoing calls
no test coverage detected