Unverified Commit 0b9d9e2e authored by Jesse Mapel's avatar Jesse Mapel Committed by GitHub
Browse files

Changed cube sample and line loop to double (#3421)

parent a345fe01
Loading
Loading
Loading
Loading
+13 −13
Original line number Diff line number Diff line
@@ -2181,9 +2181,9 @@ namespace Isis {
    maxLatitude = -99999;
    maxLongitude = -99999;

    for (int sample = 0.5; sample < sampleCount() + 0.5; sample++) {
    for (double sample = 0.5; sample < sampleCount() + 0.5; sample++) {
    // Checks to see if the point is in outer space
      for (int line = 0.5; line < lineCount() + 0.5; line++) {
      for (double line = 0.5; line < lineCount() + 0.5; line++) {
        if (useProj) {
          isGood = proj->SetWorld(sample, line);
        }