Index: Ringtoets/Common/src/Ringtoets.Common.Data/DikeProfiles/DikeProfile.cs =================================================================== diff -u -re7e22e69b16b23c89c063f18444c82aa818dc176 -rd2b9feaf8aceaa9a96d0e6e19fd6fbbee8987ca6 --- Ringtoets/Common/src/Ringtoets.Common.Data/DikeProfiles/DikeProfile.cs (.../DikeProfile.cs) (revision e7e22e69b16b23c89c063f18444c82aa818dc176) +++ Ringtoets/Common/src/Ringtoets.Common.Data/DikeProfiles/DikeProfile.cs (.../DikeProfile.cs) (revision d2b9feaf8aceaa9a96d0e6e19fd6fbbee8987ca6) @@ -47,7 +47,7 @@ /// is null. /// Thrown when any element of /// or is null. - public DikeProfile(Point2D worldCoordinate, RoughnessPoint[] dikeGeometry, Point2D[] foreshoreGeometry, + public DikeProfile(Point2D worldCoordinate, IEnumerable dikeGeometry, IEnumerable foreshoreGeometry, BreakWater breakWater, ConstructionProperties properties) { if (properties == null) @@ -145,7 +145,7 @@ { get { - return ForeshoreProfile.ForeshoreGeometry; + return ForeshoreProfile.Geometry; } } @@ -211,6 +211,8 @@ /// /// Gets or sets the value for . /// + /// will be rounded to the + /// of . public double DikeHeight { get; set; } } }