From 4d42be705d683dd58e700d231cee7f1157949e91 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 9 Nov 2005 13:39:08 +0000 Subject: [PATCH] Reduced the size of the "oversized" cessna.osg --- examples/osgsimulation/osgsimulation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/osgsimulation/osgsimulation.cpp b/examples/osgsimulation/osgsimulation.cpp index 452e3bb63..9312b3be4 100644 --- a/examples/osgsimulation/osgsimulation.cpp +++ b/examples/osgsimulation/osgsimulation.cpp @@ -330,7 +330,7 @@ int main(int argc, char **argv) osg::Node* cessna = osgDB::readNodeFile("cessna.osg"); if (cessna) { - double s = 600000.0 / cessna->getBound().radius(); + double s = 200000.0 / cessna->getBound().radius(); osg::MatrixTransform* scaler = new osg::MatrixTransform; scaler->addChild(cessna);