Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.IO/DikeProfiles/DikeProfileLocation.cs =================================================================== diff -u -r20d76fbc09034b71165ce7b07554ab8415cd53fb -re71f7a8977226f7bdbc146c4e5aac1f13c39e3eb --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.IO/DikeProfiles/DikeProfileLocation.cs (.../DikeProfileLocation.cs) (revision 20d76fbc09034b71165ce7b07554ab8415cd53fb) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.IO/DikeProfiles/DikeProfileLocation.cs (.../DikeProfileLocation.cs) (revision e71f7a8977226f7bdbc146c4e5aac1f13c39e3eb) @@ -31,16 +31,16 @@ /// /// Creates a new instance of . /// - /// The identifier for this - /// The name of this - /// The coordinate offset for this - /// The actual location. - public DikeProfileLocation(string idValue, string nameValue, double x0Value, Point2D pointValue) + /// The identifier for this + /// The name of this + /// The coordinate offset in the local coordinate system for this + /// The coordinates of the location as a . + public DikeProfileLocation(string id, string name, double offset, Point2D point) { - Id = idValue; - Name = nameValue; - X0 = x0Value; - Point = pointValue; + Id = id; + Name = name; + Offset = offset; + Point = point; } /// @@ -54,9 +54,9 @@ public string Name { get; private set; } /// - /// Gets the coordinate offset for this . + /// Gets the coordinate offset in the local coordinate system for this . /// - public double X0 { get; private set; } + public double Offset { get; private set; } /// /// Gets the actual location of this .