]> git.mxchange.org Git - simgear.git/blobdiff - simgear/scene/sky/sky.hxx
hla: Provide a directly property based api for property data element.
[simgear.git] / simgear / scene / sky / sky.hxx
index 1f1190f87286126d044edbbe7122244f2b6f9de0..33673ca647ac57f6ee2694ca443cc72a8f8f58b7 100644 (file)
@@ -57,7 +57,8 @@ using std::vector;
 
 
 typedef struct {
-        SGGeod pos;
+        SGVec3d pos;
+        SGGeod pos_geod;
         SGQuatd ori;
         double spin;
        double gst;
@@ -439,6 +440,15 @@ public:
      */
     virtual void set_3dCloudVisRange(float vis);
 
+    /** Get 3D cloud wrapping */
+    virtual bool get_3dCloudWrap() const;
+
+    /** Set 3D cloud wrapping
+     * @param wrap whether to wrap 3D clouds
+     */
+    virtual void set_3dCloudWrap(bool wrap);
+
+
 };