Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/MacroStabilityInwardsSlipPlaneUpliftVan.cs
===================================================================
diff -u -r4cbf31a1ae47d22c811e4a8d8f8e6d0f89ddc202 -rf85578eb9fbbd05088386a9b17f9687f832b051a
--- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/MacroStabilityInwardsSlipPlaneUpliftVan.cs (.../MacroStabilityInwardsSlipPlaneUpliftVan.cs) (revision 4cbf31a1ae47d22c811e4a8d8f8e6d0f89ddc202)
+++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Data/MacroStabilityInwardsSlipPlaneUpliftVan.cs (.../MacroStabilityInwardsSlipPlaneUpliftVan.cs) (revision f85578eb9fbbd05088386a9b17f9687f832b051a)
@@ -22,6 +22,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
+using Core.Common.Base.Data;
namespace Ringtoets.MacroStabilityInwards.Data
{
@@ -39,7 +40,7 @@
/// Thrown when any parameter is null.
public MacroStabilityInwardsSlipPlaneUpliftVan(MacroStabilityInwardsGrid leftGrid,
MacroStabilityInwardsGrid rightGrid,
- IEnumerable tangentLines)
+ IEnumerable tangentLines)
{
if (leftGrid == null)
{
@@ -56,7 +57,7 @@
LeftGrid = leftGrid;
RightGrid = rightGrid;
- TangentLines = tangentLines;
+ TangentLines = tangentLines.Select(tangentLine => new RoundedDouble(2, tangentLine)).ToArray();
}
///
@@ -72,7 +73,7 @@
///
/// Gets the tangent lines result.
///
- public IEnumerable TangentLines { get; private set; }
+ public IEnumerable TangentLines { get; private set; }
public object Clone()
{