Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/MacroStabilityCommon/UpliftVanCalculationGrid.cs
===================================================================
diff -u -r3893 -r4000
--- DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/MacroStabilityCommon/UpliftVanCalculationGrid.cs (.../UpliftVanCalculationGrid.cs) (revision 3893)
+++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/MacroStabilityCommon/UpliftVanCalculationGrid.cs (.../UpliftVanCalculationGrid.cs) (revision 4000)
@@ -29,39 +29,51 @@
/// Gets or sets the IsGridsAutomatic option.
/// IsGridsAutomatic.
public bool IsGridsAutomatic { get; set; }
+
/// Gets or sets the left grid x left.
/// The left grid x left.
public double LeftGridXLeft { get; set; }
+
/// Gets or sets the left grid x right.
/// The left grid x right.
public double LeftGridXRight { get; set; }
+
/// Gets or sets the left grid z top.
/// The left grid z top.
public double LeftGridZTop { get; set; }
+
/// Gets or sets the left grid z bottom.
/// The left grid z bottom.
public double LeftGridZBottom { get; set; }
+
/// Gets or sets the left grid x count.
/// The left grid x count.
public int LeftGridXCount { get; set; }
+
/// Gets or sets the left grid z count.
/// The left grid z count.
public int LeftGridZCount { get; set; }
+
/// Gets or sets the right grid x left.
/// The right grid x left.
public double RightGridXLeft { get; set; }
+
/// Gets or sets the right grid x right.
/// The right grid x right.
public double RightGridXRight { get; set; }
+
/// Gets or sets the right grid z top.
/// The right grid z top.
public double RightGridZTop { get; set; }
+
/// Gets or sets the right grid z bottom.
/// The right grid z bottom.
public double RightGridZBottom { get; set; }
+
/// Gets or sets the right grid x count.
/// The right grid x count.
public int RightGridXCount { get; set; }
+
/// Gets or sets the right grid z count.
/// The right grid z count.
public int RightGridZCount { get; set; }
@@ -71,16 +83,19 @@
/// Gets or sets the tangent line creation automatic or specified.
/// The tangent line creation setting .
public bool IsTangentLinesAutomatic { get; set; }
+
public double TangentLineZTop { get; set; }
+
/// Gets or sets the tangent line z bottom.
/// The tangent line z bottom.
public double TangentLineZBottom { get; set; }
+
/// Gets or sets the tangent line count.
/// The tangent line count.
public int TangentLineCount { get; set; }
/// Gets or sets the tangent line levels.
/// The tangent line levels.
- public ListTangentLineLevels { get; set; } = new List();
+ public List TangentLineLevels { get; set; } = new List();
}
-}
+}
\ No newline at end of file