]> git.mxchange.org Git - flightgear.git/commitdiff
Minor formating tweaks.
authorcurt <curt>
Sat, 28 Sep 2002 04:01:34 +0000 (04:01 +0000)
committercurt <curt>
Sat, 28 Sep 2002 04:01:34 +0000 (04:01 +0000)
src/FDM/flight.hxx

index 7f61f21490237f41abe2683453519ce08c54704b..4a6d98c3d298bc08daeb0328e005fde068db2875 100644 (file)
@@ -512,11 +512,15 @@ public:
     virtual void set_Psi (double psi) { 
       set_Euler_Angles(get_Phi(), get_Theta(), psi);
     }
-    virtual void set_Phi_deg (double phi) { set_Phi(phi * SGD_DEGREES_TO_RADIANS); }
+    virtual void set_Phi_deg (double phi) {
+      set_Phi(phi * SGD_DEGREES_TO_RADIANS);
+    }
     virtual void set_Theta_deg (double theta) {
       set_Theta(theta * SGD_DEGREES_TO_RADIANS); 
     }
-    virtual void set_Psi_deg (double psi) { set_Psi(psi * SGD_DEGREES_TO_RADIANS); }
+    virtual void set_Psi_deg (double psi) {
+      set_Psi(psi * SGD_DEGREES_TO_RADIANS);
+    }
     
     // Flight Path
     virtual void set_Climb_Rate( double roc);