Removed some notify which were only used for debugging of the camera class

and are now redudent.
This commit is contained in:
Robert Osfield 2001-10-04 14:20:23 +00:00
parent 4be1324b8c
commit f0bb34c4fe

View File

@ -110,11 +110,6 @@ void Camera::setPerspective(const double fovy,const double aspectRatio,
_zNear = zNear;
_zFar = zFar;
notify(INFO)<<"osg::Camera::setPerspective(fovy="<<fovy<<",aspectRatio="<<aspectRatio<<","<<endl;
notify(INFO)<<" zNear="<<zNear<<", zFar="<<zFar<<")"<<endl;
notify(INFO)<<" osg::Camera::calc_fovx()="<<calc_fovx()<<endl;
notify(INFO)<<" osg::Camera::calc_fovy()="<<calc_fovy()<<endl;
_dirty = true;
}
@ -140,11 +135,6 @@ void Camera::setFOV(const double fovx,const double fovy,
_zNear = zNear;
_zFar = zFar;
notify(INFO)<<"osg::Camera::setFOV(fovx="<<fovx<<",fovy="<<fovy<<","<<endl;
notify(INFO)<<" zNear="<<zNear<<", zFar="<<zFar<<")"<<endl;
notify(INFO)<<" osg::Camera::calc_fovx()="<<calc_fovx()<<endl;
notify(INFO)<<" osg::Camera::calc_fovy()="<<calc_fovy()<<endl;
_dirty = true;
}
@ -179,10 +169,6 @@ void Camera::adjustAspectRatio(const double newAspectRatio, const AdjustAspectRa
_top /= deltaRatio;
}
notify(INFO)<<"osg::Camera::adjustAspectRatio(newAspectRatio="<<newAspectRatio<<", AdjustAxis="<<aa<<")"<<endl;
notify(INFO)<<" osg::Camera::calc_fovx()="<<calc_fovx()<<endl;
notify(INFO)<<" osg::Camera::calc_fovy()="<<calc_fovy()<<endl;
_dirty = true;
}