Skip to content
Snippets Groups Projects
Commit 36ccf273 authored by Makayla Shepherd's avatar Makayla Shepherd
Browse files

Updating to be closer to ISIS coding standards

parent eeef1f2f
No related merge requests found
...@@ -146,6 +146,15 @@ namespace Isis { ...@@ -146,6 +146,15 @@ namespace Isis {
} }
/**
* Finds where the surface point hits the image. If successful it sets the forcal plane
* corrdinates
*
* TODO Ken document this
*
* @param &approxLine
* @param &surfacePoint
*/
SampleScanCameraGroundMap::FindFocalPlaneStatus SampleScanCameraGroundMap::FindFocalPlaneStatus
SampleScanCameraGroundMap::FindFocalPlane(const int &approxLine, SampleScanCameraGroundMap::FindFocalPlane(const int &approxLine,
const SurfacePoint &surfacePoint) { const SurfacePoint &surfacePoint) {
...@@ -349,13 +358,18 @@ namespace Isis { ...@@ -349,13 +358,18 @@ namespace Isis {
} }
/**
* TODO Ken document this
*/
SampleScanCameraGroundMap::SensorSurfacePointDistanceFunctor::SensorSurfacePointDistanceFunctor SampleScanCameraGroundMap::SensorSurfacePointDistanceFunctor::SensorSurfacePointDistanceFunctor
(Isis::Camera *camera, const Isis::SurfacePoint &surPt) { (Isis::Camera *camera, const Isis::SurfacePoint &surPt) {
m_camera = camera; m_camera = camera;
m_surfacePoint = surPt; m_surfacePoint = surPt;
} }
/**
* TODO Ken document this
*/
double SampleScanCameraGroundMap::SensorSurfacePointDistanceFunctor::operator()(double et) { double SampleScanCameraGroundMap::SensorSurfacePointDistanceFunctor::operator()(double et) {
double s[3], p[3]; double s[3], p[3];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment