Commit b16df83c authored by Ken Edmundson's avatar Ken Edmundson
Browse files

minor rename of method

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/branches/ipce@6141 41f8697f-d340-4b68-9986-7bafba869bb8
parent ef88fbf2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -172,7 +172,7 @@ namespace Isis {



  ControlPoint *BundleControlPoint::getRawControlPoint() const {
  ControlPoint *BundleControlPoint::rawControlPoint() const {
    return m_controlPoint;
  }

+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ namespace Isis {
      void setAdjustedSurfacePoint(SurfacePoint surfacePoint);

      // accessors
      ControlPoint *getRawControlPoint() const; // TODO: Rename this method without "get" to meet coding standards
      ControlPoint *rawControlPoint() const;
      bool isRejected() const;
      int numberMeasures() const;
      SurfacePoint getAdjustedSurfacePoint() const; // TODO: Rename this method without "get" to meet coding standards
+1 −1
Original line number Diff line number Diff line
@@ -631,7 +631,7 @@ int main(int argc, char *argv[]) {
    qDebug() << "weights:        " << weights[0] << weights[1] << weights[2];
    qDebug();

    ControlPoint *cp = bcp1.getRawControlPoint();
    ControlPoint *cp = bcp1.rawControlPoint();
    qDebug() << "Raw control point equal to original?    " << toString(*cp == *freePoint);
    qDebug() << "Raw control point is rejected?          " << toString(bcp1.isRejected());
    SurfacePoint sp = bcp1.getAdjustedSurfacePoint();