From a2cf39fd740b2d83c53f27327a5370d62dfd256e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Mon, 17 Dec 2001 21:13:17 +0000 Subject: [PATCH] Changed the default field of Y to 45 degrees, as this is probably a better default than 30 degrees (what it was temproarily) or the 90 degrees that it was originally. --- src/osg/Camera.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osg/Camera.cpp b/src/osg/Camera.cpp index 7cafe2348..90fd0387b 100644 --- a/src/osg/Camera.cpp +++ b/src/osg/Camera.cpp @@ -14,7 +14,7 @@ Camera::Camera() _adjustAspectRatioMode = ADJUST_HORIZONTAL; // projection details. - setPerspective(30,1.0,1.0,1000.0); + setPerspective(45.0,1.0,1.0,1000.0); // look at details. _lookAtType =USE_HOME_POSITON;