Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/MacroStabilityInwardsGrid.cs
===================================================================
diff -u -r47b2bbe8b9d15194a9641a2db098c25e5e775528 -r7472a3a034f5d43d665980b35727c63d167abb5e
--- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/MacroStabilityInwardsGrid.cs (.../MacroStabilityInwardsGrid.cs) (revision 47b2bbe8b9d15194a9641a2db098c25e5e775528)
+++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/MacroStabilityInwardsGrid.cs (.../MacroStabilityInwardsGrid.cs) (revision 7472a3a034f5d43d665980b35727c63d167abb5e)
@@ -37,12 +37,16 @@
///
/// Creates a new instance of .
///
- public MacroStabilityInwardsGrid()
+ /// The x left of the grid.
+ /// The x right of the grid.
+ /// The z top of the grid.
+ /// The z bottom of the grid.
+ public MacroStabilityInwardsGrid(double xLeft, double xRight, double zTop, double zBottom)
{
- xLeft = new RoundedDouble(2, double.NaN);
- xRight = new RoundedDouble(2, double.NaN);
- zTop = new RoundedDouble(2, double.NaN);
- zBottom = new RoundedDouble(2, double.NaN);
+ this.xLeft = new RoundedDouble(2, xLeft);
+ this.xRight = new RoundedDouble(2, xRight);
+ this.zTop = new RoundedDouble(2, zTop);
+ this.zBottom = new RoundedDouble(2, zBottom);
}
///