Index: Ringtoets/Piping/src/Ringtoets.Piping.Data/RingtoetsPipingSurfaceLine.cs =================================================================== diff -u -re5e9b60b2f5badab0a2b54a4c8542baf124751ce -r9d1ffc9bd1a9c392c6b832422649a0ad2f5ff59c --- Ringtoets/Piping/src/Ringtoets.Piping.Data/RingtoetsPipingSurfaceLine.cs (.../RingtoetsPipingSurfaceLine.cs) (revision e5e9b60b2f5badab0a2b54a4c8542baf124751ce) +++ Ringtoets/Piping/src/Ringtoets.Piping.Data/RingtoetsPipingSurfaceLine.cs (.../RingtoetsPipingSurfaceLine.cs) (revision 9d1ffc9bd1a9c392c6b832422649a0ad2f5ff59c) @@ -37,8 +37,6 @@ public class RingtoetsPipingSurfaceLine { private Point3D[] geometryPoints; - private double entryPointL; - private double exitPointL; /// /// Initializes a new instance of the class. @@ -96,14 +94,14 @@ public Point3D DitchDikeSide { get; private set; } /// - /// Gets the point which is the entry point for piping. + /// Gets the point which characterizes the dike toe at river side. /// - public Point3D EntryPoint { get; private set; } + public Point3D DikeToeAtRiver { get; private set; } /// - /// Gets the point which is the exit point for piping. + /// Gets the point which characterizes the dike toe at polder side. /// - public Point3D ExitPoint { get; private set; } + public Point3D DikeToeAtPolder { get; private set; } /// /// Sets the geometry of the surfaceline. @@ -178,27 +176,27 @@ } /// - /// Sets the at the given point. + /// Sets the at the given point. /// - /// The location as a which to set as the . + /// The location as a which to set as the . /// Thrown when doesn't contain a at /// . /// is null. - public void SetEntryPointAt(Point3D point) + public void SetDikeToeAtRiver(Point3D point) { - EntryPoint = GetPointFromGeometry(point); + DikeToeAtRiver = GetPointFromGeometry(point); } /// - /// Sets the at the given point. + /// Sets the at the given point. /// - /// The location as a which to set as the . + /// The location as a which to set as the . /// Thrown when doesn't contain a at /// . /// is null. - public void SetExitPointAt(Point3D point) + public void SetDikeToeAtPolder(Point3D point) { - ExitPoint = GetPointFromGeometry(point); + DikeToeAtPolder = GetPointFromGeometry(point); } ///