]> git.mxchange.org Git - simgear.git/blobdiff - simgear/math/sg_types.hxx
Move SGReadFileCallback from model.cxx to public class ModelRegistry
[simgear.git] / simgear / math / sg_types.hxx
index 0ffa2b76ba2fb155b32ff78eb9508192a2cbd405..a1107f11d4b9e459996b9923b9c6d50a600bdf5a 100644 (file)
@@ -63,25 +63,5 @@ typedef vector < string > string_list;
 typedef string_list::iterator string_list_iterator;
 typedef string_list::const_iterator const_string_list_iterator;
 
-
-/**
- * Simple 2d point class where members can be accessed as x, dist, or lon
- * and y, theta, or lat
- */
-class point2d {
-public:
-    union {
-       double x;
-       double dist;
-       double lon;
-    };
-    union {
-       double y;
-       double theta;
-       double lat;
-    };
-};
-
-
 #endif // _SG_TYPES_HXX