Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
...@@ -44,6 +44,7 @@ release. ...@@ -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 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 <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 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
- 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. - 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.
......
...@@ -46,12 +46,12 @@ namespace Isis { ...@@ -46,12 +46,12 @@ namespace Isis {
} }
icube.open(ui.GetCubeName("FROM")); icube.open(ui.GetCubeName("FROM"));
Cube mcube; Cube *mcube = NULL;
if((ui.WasEntered("MATCH"))) { if((ui.WasEntered("MATCH"))) {
mcube.open(ui.GetCubeName("MATCH")); mcube->open(ui.GetCubeName("MATCH"));
} }
noproj(&icube, &mcube, ui); noproj(&icube, mcube, ui);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment