]> git.mxchange.org Git - simgear.git/blobdiff - simgear/sky/sky.hxx
Collapsed the init() method into the constructor.
[simgear.git] / simgear / sky / sky.hxx
index 95665fd7c176ddfe61ef375a0517a042d791f71c..4190508be387bc50ff850b3596a1cc26a678e9bc 100644 (file)
@@ -153,14 +153,14 @@ public:
     }
 
     // add a cloud layer (above sea level in meters)
-    void add_cloud_layer( double span, double asl, 
-                         double thickness, double transition,
+    void add_cloud_layer( double asl, double thickness,
+                         double transition, double span,
                          SGCloudType type );
-    void add_cloud_layer( double span, double asl,
-                         double thickness, double transition,
+    void add_cloud_layer( double asl, double thickness,
+                         double transition, double span,
                          const string &tex_path );
-    void add_cloud_layer( double span, double asl,
-                         double thickness, double transition,
+    void add_cloud_layer( double asl, double thickness,
+                         double transition, double span,
                          ssgSimpleState *state );
 
     inline int get_num_layers() const { return cloud_layers.size(); }