Index: DamEngine/trunk/src/Deltares.DamEngine.Data/Geometry/Point2D.cs
===================================================================
diff -u -r6087 -r6404
--- DamEngine/trunk/src/Deltares.DamEngine.Data/Geometry/Point2D.cs (.../Point2D.cs) (revision 6087)
+++ DamEngine/trunk/src/Deltares.DamEngine.Data/Geometry/Point2D.cs (.../Point2D.cs) (revision 6404)
@@ -1,4 +1,4 @@
-// Copyright (C) Stichting Deltares 2024. All rights reserved.
+// Copyright (C) Stichting Deltares 2025. All rights reserved.
//
// This file is part of the Dam Engine.
//
@@ -155,6 +155,15 @@
}
///
+ /// Gets the geometry bounds.
+ ///
+ ///
+ public GeometryBounds GetGeometryBounds()
+ {
+ return new GeometryBounds(X, X, Z, Z);
+ }
+
+ ///
/// Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
///
/// An object to compare with this instance.
@@ -171,13 +180,4 @@
return String.Compare(ToString(), obj.ToString(), StringComparison.Ordinal);
}
-
- ///
- /// Gets the geometry bounds.
- ///
- ///
- public GeometryBounds GetGeometryBounds()
- {
- return new GeometryBounds(X, X, Z, Z);
- }
}
\ No newline at end of file