summaryrefslogtreecommitdiff
path: root/src/Panorama.cxx
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-12-12 19:19:00 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2006-12-12 19:19:00 +0100
commite4bf7c9dec362739678689d87126c8df490ddb08 (patch)
tree075097be5bcc4c8258edfeeb8131d0a75d31807e /src/Panorama.cxx
parentecf37e45b96cae7596edffbe5b381ba123bc5c5f (diff)
try to get display working
Diffstat (limited to 'src/Panorama.cxx')
-rw-r--r--src/Panorama.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Panorama.cxx b/src/Panorama.cxx
index 4ecf2f4..6ed8486 100644
--- a/src/Panorama.cxx
+++ b/src/Panorama.cxx
@@ -11,6 +11,7 @@
#include "Panorama.H"
#include "ProjectionTangential.H"
+#include "ProjectionTangentialLSQ.H"
#include "ProjectionSphaeric.H"
#define EARTH_RADIUS 6371010.0
@@ -285,7 +286,7 @@ Panorama::set_projection(Projection::Projection_t p) {
switch(projection_type) {
case Projection::TANGENTIAL:
- proj = new ProjectionTangential();
+ proj = new ProjectionTangentialLSQ();
view_angle = pi_d / 3.0;
break;
case Projection::SPHAERIC: