Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/RoughnessProfileSection.cs =================================================================== diff -u -rd847955b7a8b9bd4cd80c5e10e6a055c9d5daa8b -rd2de88a141d3ba20d1f3b301a3c38723b682b206 --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/RoughnessProfileSection.cs (.../RoughnessProfileSection.cs) (revision d847955b7a8b9bd4cd80c5e10e6a055c9d5daa8b) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Data/RoughnessProfileSection.cs (.../RoughnessProfileSection.cs) (revision d2de88a141d3ba20d1f3b301a3c38723b682b206) @@ -24,14 +24,21 @@ namespace Ringtoets.GrassCoverErosionInwards.Data { + /// + /// This class represents a sub-section of a line and the characteristic properties of that line. + /// public class RoughnessProfileSection { /// /// Creates a new instance of the class. /// - /// - /// + /// Starting point of the section. + /// Ending point of the section. /// The roughness of the section between and . + /// Thrown when: + /// is null. + /// is null. + /// public RoughnessProfileSection(Point2D startingPoint, Point2D endingPoint, double roughness) { if (startingPoint == null)