From 8a2e2742c589672b6505afee52529063670d309d Mon Sep 17 00:00:00 2001
From: Jean-Francois Remacle <jean-francois.remacle@uclouvain.be>
Date: Tue, 25 Mar 2008 20:26:08 +0000
Subject: [PATCH] *** empty log message ***

---
 Plugin/GeoEarthImport.cpp | 23 -----------------------
 1 file changed, 23 deletions(-)

diff --git a/Plugin/GeoEarthImport.cpp b/Plugin/GeoEarthImport.cpp
index a2b3b927d2..94ccb6ce43 100644
--- a/Plugin/GeoEarthImport.cpp
+++ b/Plugin/GeoEarthImport.cpp
@@ -75,26 +75,3 @@ void GeoEarthImport::end_surface(){
   new_surface();
 }
 
-/*static void projectLatLon(Point3D &psphere,Point &pplan){
-<<<<<<< GeoEarthImport.cpp
-  pplan.x=asin(psphere.z);
-  pplan.y=atan2(psphere.y,psphere.x);
-	pplan.zone_id=psphere.zone_id;
-=======
-        pplan.x=asin(psphere.z);
-        pplan.y=atan2(psphere.y,psphere.x);
-        pplan.zone_id=psphere.zone_id;
->>>>>>> 1.3
-}
-static void projectInvStereo(Point &pplan,Point3D &psphere){
-        double rp2=pplan.x*pplan.x+pplan.y*pplan.y;
-        psphere.z= (4-rp2)/(4+rp2);
-        psphere.x= (1+psphere.z)/2*pplan.x;
-        psphere.y= (1+psphere.z)/2*pplan.y;
-        psphere.zone_id=pplan.zone_id;
-}
-static void projectStereo(Point3D &psphere,Point &pplan){
-        pplan.x=2*psphere.x/(psphere.z+1);
-        pplan.y=2*psphere.y/(psphere.z+1);
-        pplan.zone_id=psphere.zone_id;
-}*/
-- 
GitLab