OSG获取模型包围盒(BoundingBox) 2012-5-14 21:16 | 70 | 0 | Coding #include osg::BoundingBox boundingBox; osg::ComputeBoundsVisitor bounderVisitor; geode->accept(bounderVisitor); // 授权 boundingBox = bounderVisitor.getBoundingBox(); // 其中ge… BoundingBoxOSG