Index: DamEngine/trunk/src/Deltares.DamEngine.Data/Geometry/GeometryConstants.cs =================================================================== diff -u -r4000 -r4052 --- DamEngine/trunk/src/Deltares.DamEngine.Data/Geometry/GeometryConstants.cs (.../GeometryConstants.cs) (revision 4000) +++ DamEngine/trunk/src/Deltares.DamEngine.Data/Geometry/GeometryConstants.cs (.../GeometryConstants.cs) (revision 4052) @@ -19,42 +19,42 @@ // Stichting Deltares and remain full property of Stichting Deltares at all times. // All rights reserved. -namespace Deltares.DamEngine.Data.Geometry +namespace Deltares.DamEngine.Data.Geometry; + +/// +/// Class holding all geometry related constants +/// +public static class GeometryConstants { /// - /// Class holding all geometry related constants + /// The default left limit of the geometry /// - public static class GeometryConstants - { - /// - /// The default left limit of the geometry - /// - public const double DefaultLeftLimitGeometry = 0.0; + public const double DefaultLeftLimitGeometry = 0.0; - /// - /// The default right limit of the geometry - /// - public const double DefaultRightLimitGeometry = 50.0; + /// + /// The default right limit of the geometry + /// + public const double DefaultRightLimitGeometry = 50.0; - /// - /// The default bottom limit of the geometry - /// - public const double DefaultBottomLimitGeometry = -10.0; + /// + /// The default bottom limit of the geometry + /// + public const double DefaultBottomLimitGeometry = -10.0; - /// - /// The accuracy as used for the geometry objects - /// - public const double Accuracy = 0.001; + /// + /// The accuracy as used for the geometry objects + /// + public const double Accuracy = 0.001; - /// - /// The volumic weight of water - /// - public const double VolumicWeightOfWater = 9.81; - } - /// - /// Pointtype as used by intersection methods and other helper methods to determine for which plane the method has to work. + /// The volumic weight of water /// + public const double VolumicWeightOfWater = 9.81; +} + +/// +/// Pointtype as used by intersection methods and other helper methods to determine for which plane the method has to work. +/// // public enum PointType // { // /// @@ -65,5 +65,4 @@ // /// The xz plane // /// // XZ -// } -} \ No newline at end of file +// } \ No newline at end of file