Index: DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/Common/SoilProfile2DHelper.cs =================================================================== diff -u -r6126 -r6245 --- DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/Common/SoilProfile2DHelper.cs (.../SoilProfile2DHelper.cs) (revision 6126) +++ DamEngine/trunk/src/Deltares.DamEngine.Calculators/KernelWrappers/Common/SoilProfile2DHelper.cs (.../SoilProfile2DHelper.cs) (revision 6245) @@ -254,9 +254,9 @@ foreach (GeometrySurface surface in soilProfile.Geometry.Surfaces) { var polygon = new GeometryLoop(); - foreach (Point2D point in surface.OuterLoop.CalcPoints) + foreach (Point2D point in surface.OuterLoop.Points) { - polygon.CalcPoints.Add(point); + polygon.Points.Add(point); } if (Routines2D.CheckIfPointIsInPolygon(polygon, xCoord, zCoord) == PointInPolygon.OutsidePolygon) @@ -366,10 +366,10 @@ { if (connectionType == PolyLineConnectionType.SamePoint) { - return currentPolyLine.CalcPoints.Last().LocationEquals(nextPolyLine.CalcPoints.First()); + return currentPolyLine.Points.Last().LocationEquals(nextPolyLine.Points.First()); } - bool isPolyLineUnique = polyLines.FindAll(p => p.CalcPoints.First().X.IsNearEqual(nextPolyLine.CalcPoints.First().X, toleranceAlmostEqual)).Count == 1; - return currentPolyLine.CalcPoints.Last().X.IsNearEqual(nextPolyLine.CalcPoints.First().X, toleranceAlmostEqual) && isPolyLineUnique; + bool isPolyLineUnique = polyLines.FindAll(p => p.Points.First().X.IsNearEqual(nextPolyLine.Points.First().X, toleranceAlmostEqual)).Count == 1; + return currentPolyLine.Points.Last().X.IsNearEqual(nextPolyLine.Points.First().X, toleranceAlmostEqual) && isPolyLineUnique; } @@ -393,7 +393,7 @@ continue; var currentPolyLine = new GeometryPointString(); - currentPolyLine.CalcPoints.AddRange(polyLine.CalcPoints); + currentPolyLine.Points.AddRange(polyLine.Points); usedPolyLines.Add(polyLine); bool isConnectionFound; @@ -418,7 +418,7 @@ if (CanPolyLinesBeConnected(connectionType, currentPolyLine, nextPolyLine, polyLines)) { - currentPolyLine.CalcPoints.AddRange(connectionType == PolyLineConnectionType.SamePoint ? nextPolyLine.CalcPoints.Skip(1) : nextPolyLine.CalcPoints); + currentPolyLine.Points.AddRange(connectionType == PolyLineConnectionType.SamePoint ? nextPolyLine.Points.Skip(1) : nextPolyLine.Points); usedPolyLines.Add(nextPolyLine); isConnectionFound = true; break; @@ -435,7 +435,7 @@ /// All the xCoordinates of the soil profile 2D. private static double[] DetermineAllXCoordinatesOfSoilProfile(SoilProfile2D soilProfile) { - IEnumerable points = soilProfile.Surfaces.SelectMany(surf => surf.GeometrySurface.OuterLoop.CalcPoints); + IEnumerable points = soilProfile.Surfaces.SelectMany(surf => surf.GeometrySurface.OuterLoop.Points); double[] xCoordinates = points.Select(point => point.X).OrderBy(x => x).Distinct().ToArray(); return xCoordinates; }