USGS

Isis 3.0 Object Programmers' Reference

Home

NewHorizonsLorriDistortionMap.h
Go to the documentation of this file.
1 #ifndef NewHorizonsLorriDistortionMap_h
2 #define NewHorizonsLorriDistortionMap_h
3 
23 #include "CameraDistortionMap.h"
24 #include "Camera.h"
25 
26 namespace Isis {
38  public:
39  NewHorizonsLorriDistortionMap(Camera *parent, double e2, double e5, double e6,
40  double zDirection = 1.0);
42 
43  bool SetFocalPlane(const double ux, const double uy);
44  bool SetUndistortedFocalPlane(const double dx, const double dy);
45 
46  private:
47  double p_e2;
48  double p_e5;
49  double p_e6;
50  };
51 };
52 #endif