USGS

Isis 3.0 Object Programmers' Reference

Home

DawnFcDistortionMap.h
1 #ifndef DawnFcDistortionMap_h
2 #define DawnFcDistortionMap_h
3 
4 #include "CameraDistortionMap.h"
5 #include "Camera.h"
6 
7 namespace Isis {
14  public:
15  DawnFcDistortionMap(Camera *parent, double k1, double zDirection = 1.0);
16  ~DawnFcDistortionMap() {};
17 
18  bool SetFocalPlane(const double ux, const double uy);
19  bool SetUndistortedFocalPlane(const double dx, const double dy);
20 
21  private:
22  double p_k1;
23  };
24 };
25 #endif