Skip to content
Snippets Groups Projects
Commit 8a2e2742 authored by Jean-François Remacle's avatar Jean-François Remacle
Browse files

*** empty log message ***

parent 9f642800
No related branches found
No related tags found
No related merge requests found
...@@ -75,26 +75,3 @@ void GeoEarthImport::end_surface(){ ...@@ -75,26 +75,3 @@ void GeoEarthImport::end_surface(){
new_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;
}*/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment