]> git.mxchange.org Git - simgear.git/blobdiff - simgear/misc/texcoord.hxx
Removal of PLIB/SG from SimGear
[simgear.git] / simgear / misc / texcoord.hxx
index a5d49bd482fcdc91c9d4ec23d609c31d83c07ea3..20537922b47fa0229f919532075196e159c961d5 100644 (file)
@@ -36,6 +36,9 @@
 #include <simgear/bucket/newbucket.hxx>
 #include <simgear/math/sg_types.hxx>
 
+#include <simgear/math/SGMathFwd.hxx>
+#include <simgear/math/SGGeod.hxx>
+#include <simgear/math/SGVec2.hxx>
 
 /**
  * Traverse the specified fan/strip/list of vertices and attempt to
  * @param scale (default = 1.0) scaling factor
  * @return list of texture coordinates
  */
-point_list sgCalcTexCoords( const SGBucket& b, const point_list& geod_nodes,
+std::vector<SGVec2f> sgCalcTexCoords( const SGBucket& b, const std::vector<SGGeod>& geod_nodes,
                            const int_list& fan, double scale = 1.0 );
 
-point_list sgCalcTexCoords( double centerLat, const point_list& geod_nodes,
+std::vector<SGVec2f> sgCalcTexCoords( double centerLat, const std::vector<SGGeod>& geod_nodes,
                            const int_list& fan, double scale = 1.0 );