From Nick, increased info.radius by x 1.3 to avoid culling

This commit is contained in:
Robert Osfield
2004-01-06 08:38:17 +00:00
parent 3f9ba1484c
commit 466497cc8c

View File

@@ -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;
}