Added default constructor implemention to LOD and PagedLOD.

Added verbose messages to DatabasePager.
This commit is contained in:
Robert Osfield
2003-07-10 14:53:07 +00:00
parent 7432eee381
commit 606daca904
9 changed files with 30 additions and 13 deletions

View File

@@ -2,6 +2,11 @@
using namespace osg;
PagedLOD::PagedLOD()
{
_centerMode = USER_DEFINED_CENTER;
}
PagedLOD::PagedLOD(const PagedLOD& plod,const CopyOp& copyop):
LOD(plod,copyop)
{