]> git.mxchange.org Git - flightgear.git/commitdiff
Modified Files:
authorfrohlich <frohlich>
Wed, 1 Nov 2006 22:26:57 +0000 (22:26 +0000)
committerfrohlich <frohlich>
Wed, 1 Nov 2006 22:26:57 +0000 (22:26 +0000)
fg_init.cxx: Oops, forgot to commit that chunk

src/Main/fg_init.cxx

index 7c7464025d61676e82919e6769cb1234af04ccb1..4b7059921c0cc09d45e54400a5b68647bff14205 100644 (file)
@@ -1357,27 +1357,12 @@ void fgInitFDM() {
     }
 }
 
-static void printMat(const sgVec4 *mat, char *name="")
-{
-    int i;
-    SG_LOG(SG_GENERAL, SG_BULK, name );
-    for(i=0; i<4; i++) {
-        SG_LOG(SG_GENERAL, SG_BULK, "  " << mat[i][0] << " " << mat[i][1]
-                                    << " " << mat[i][2] << " " << mat[i][3] );
-    }
-}
-
 // Initialize view parameters
 void fgInitView() {
   // force update of model so that viewer can get some data...
   globals->get_aircraft_model()->update(0);
   // run update for current view so that data is current...
   globals->get_viewmgr()->update(0);
-
-  printMat(globals->get_current_view()->get_VIEW(),"VIEW");
-  printMat(globals->get_current_view()->get_UP(),"UP");
-  // printMat(globals->get_current_view()->get_LOCAL(),"LOCAL");
-  
 }