You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/PolylineAlgorithm/Extensions/PolylineEncoderExtensions.cs
-2Lines changed: 0 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,10 @@
5
5
6
6
namespacePolylineAlgorithm.Extensions;
7
7
8
-
usingPolylineAlgorithm;
9
8
usingPolylineAlgorithm.Abstraction;
10
9
usingSystem;
11
10
usingSystem.Collections.Generic;
12
11
usingSystem.Runtime.InteropServices;
13
-
usingstaticPolylineAlgorithm.Internal.Defaults;
14
12
15
13
/// <summary>
16
14
/// Provides extension methods for the <see cref="IPolylineEncoder{TCoordinate, TPolyline}"/> interface to facilitate encoding geographic coordinates into polylines.
@@ -102,11 +83,11 @@ public static int Normalize(double value, uint precision = 5) {
102
83
/// <remarks>
103
84
/// <para>
104
85
/// This method reverses the normalization process performed by <see cref="Normalize"/>. It takes an integer value and converts it
105
-
/// to a double by dividing by 10 raised to the power of the specified precision. If the precision is 0, the value is returned as a double
86
+
/// to a double by dividing it by 10 raised to the power of the specified precision. If the precision is 0, the value is returned as a double
106
87
/// without division.
107
88
/// </para>
108
89
/// <para>
109
-
/// The calculation is performed inside a <c>checked</c> block to ensure that any arithmetic overflow is detected and an <see cref="OverflowException"/> is thrown.
90
+
/// The calculation is performed inside a <see langword="checked"/> block to ensure that any arithmetic overflow is detected and an <see cref="OverflowException"/> is thrown.
110
91
/// </para>
111
92
/// <para>
112
93
/// For example, with a precision of 5:
@@ -132,14 +113,14 @@ public static int Normalize(double value, uint precision = 5) {
132
113
/// Thrown if the arithmetic operation overflows during conversion.
0 commit comments