From 466497cc8ccf3b01614d02e7721adde3d89157d4 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Tue, 6 Jan 2004 08:38:17 +0000 Subject: [PATCH] From Nick, increased info.radius by x 1.3 to avoid culling --- src/osgPlugins/txp/TXPArchive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osgPlugins/txp/TXPArchive.cpp b/src/osgPlugins/txp/TXPArchive.cpp index 438f80bfe..0b57f6fd8 100644 --- a/src/osgPlugins/txp/TXPArchive.cpp +++ b/src/osgPlugins/txp/TXPArchive.cpp @@ -573,7 +573,7 @@ bool TXPArchive::getTileInfo(int x, int y, int lod, TileInfo& info) maxz ) ); - info.radius = osg::Vec3(size.x/2.f, size.y/2.f,0.f).length(); + info.radius = osg::Vec3(size.x/2.f, size.y/2.f,0.f).length() * 1.3; return true; }