From 36ccf2731b4e573bf1b1fcccfa14bfffbc3f32bc Mon Sep 17 00:00:00 2001 From: Makayla Shepherd Date: Sat, 14 Jul 2018 15:09:18 -0700 Subject: [PATCH] Updating to be closer to ISIS coding standards --- .../SampleScanCameraGroundMap.cpp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/isis/src/base/objs/SampleScanCameraGroundMap/SampleScanCameraGroundMap.cpp b/isis/src/base/objs/SampleScanCameraGroundMap/SampleScanCameraGroundMap.cpp index 43ce9ed617..ab57d2eb3b 100644 --- a/isis/src/base/objs/SampleScanCameraGroundMap/SampleScanCameraGroundMap.cpp +++ b/isis/src/base/objs/SampleScanCameraGroundMap/SampleScanCameraGroundMap.cpp @@ -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::FindFocalPlane(const int &approxLine, const SurfacePoint &surfacePoint) { @@ -349,13 +358,18 @@ namespace Isis { } + /** + * TODO Ken document this + */ SampleScanCameraGroundMap::SensorSurfacePointDistanceFunctor::SensorSurfacePointDistanceFunctor (Isis::Camera *camera, const Isis::SurfacePoint &surPt) { m_camera = camera; m_surfacePoint = surPt; } - + /** + * TODO Ken document this + */ double SampleScanCameraGroundMap::SensorSurfacePointDistanceFunctor::operator()(double et) { double s[3], p[3]; -- GitLab