Unverified Commit 664f2f6f authored by Amy Stamile's avatar Amy Stamile Committed by GitHub
Browse files

Fixes match cube default to NULL (#5429)

parent 96e07350
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@ release.
- Fixed <i>noproj</i> bug where some temporary files were not deleted after call to cam2cam.  Issue: [#4813](https://github.com/USGS-Astrogeology/ISIS3/issues/4813)
- Fixed <i>noproj</i> bug where missing shapemodel-related keywords (RayTraceEngine, BulletParts, Tolerance) are dropped when the output label is created. This resulted in the Bullet collision detection engine not being used. Issue: [#5377](https://github.com/USGS-Astrogeology/ISIS3/issues/5377)
- Fixed ISIS failing to expand env variables with an "_" in them. [#5402](https://github.com/DOI-USGS/ISIS3/pull/5402)
- Fixed <i>noproj</i> bug where match cube not NULL when not specifying MATCH parameter [#5381](https://github.com/USGS-Astrogeology/ISIS3/issues/5381)

### Added
- Added 8 new functions to the Sensor Utility Library: Slant Distance, Target Center Distance, Right Ascension Declination, Local Solar Time, Line Resolution, Sample Resolution, Pixel Resolution, and Solar Longitude.
+3 −3
Original line number Diff line number Diff line
@@ -46,12 +46,12 @@ namespace Isis {
    }
    icube.open(ui.GetCubeName("FROM"));

    Cube mcube;
    Cube *mcube = NULL;
    if((ui.WasEntered("MATCH"))) {
      mcube.open(ui.GetCubeName("MATCH"));
      mcube->open(ui.GetCubeName("MATCH"));
    }
    
    noproj(&icube, &mcube, ui);
    noproj(&icube, mcube, ui);
  }

  /**