diff options
| author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2006-12-17 16:13:32 +0100 | 
|---|---|---|
| committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2006-12-17 16:13:32 +0100 | 
| commit | 23900d0b19e5c978934108f6a54aa82f6c7f27cb (patch) | |
| tree | 33008c888e2205c32296272c5e766d292233a212 /src/Panorama.H | |
| parent | 6ee81353d9dd4a9a97f8e91d6a619e59808f8106 (diff) | |
use LSQ for all projection types
Diffstat (limited to 'src/Panorama.H')
| -rw-r--r-- | src/Panorama.H | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Panorama.H b/src/Panorama.H index ca000f3..5dd670f 100644 --- a/src/Panorama.H +++ b/src/Panorama.H @@ -8,7 +8,7 @@  #define PANORAMA_H  #include "Hill.H" -#include "Projection.H" +#include "ProjectionLSQ.H"  #include "ViewParams.H" @@ -23,8 +23,8 @@ class Panorama {  		Hills *mountains;  		Hills *close_mountains;  		Hills *visible_mountains; -		Projection::Projection *proj; -		Projection::Projection_t projection_type; +		ProjectionLSQ *proj; +		ProjectionLSQ::Projection_t projection_type;  		Hill * get_pos(const char *name); @@ -125,9 +125,9 @@ class Panorama {  		int comp_params(Hills *h); -		Projection::Projection_t get_projection(); +		ProjectionLSQ::Projection_t get_projection(); -		void set_projection(Projection::Projection_t p); +		void set_projection(ProjectionLSQ::Projection_t p);  		void set_distortion_params(double k0, double k1);  | 
