This is an automated email from the ASF dual-hosted git repository.

desruisseaux pushed a commit to branch geoapi-4.0
in repository https://gitbox.apache.org/repos/asf/sis.git

commit be4d34e3e6c1506fede95107e8877bc385edbb5b
Author: Martin Desruisseaux <martin.desruisse...@geomatys.com>
AuthorDate: Tue Feb 8 11:57:58 2022 +0100

    Fix a confusing use of "orginal values" in documentation.
---
 .../java/org/apache/sis/coverage/CategoryList.java | 23 +++++++++++-----------
 .../operation/transform/ConcatenatedTransform.java | 10 +++++-----
 .../transform/ConcatenatedTransformDirect.java     |  4 ++--
 .../operation/transform/ConstantTransform1D.java   |  8 ++++----
 .../operation/transform/CopyTransform.java         |  4 ++--
 .../transform/EllipsoidToCentricTransform.java     |  2 +-
 .../transform/ExponentialTransform1D.java          |  8 ++++----
 .../operation/transform/IdentityTransform.java     | 10 +++++-----
 .../operation/transform/IdentityTransform1D.java   |  8 ++++----
 .../InterpolatedGeocentricTransform2D.java         |  4 ++--
 .../InterpolatedMolodenskyTransform2D.java         |  4 ++--
 .../operation/transform/InterpolatedTransform.java |  2 +-
 .../transform/InterpolatedTransform2D.java         |  4 ++--
 .../operation/transform/LinearTransform1D.java     | 10 +++++-----
 .../transform/LogarithmicTransform1D.java          |  8 ++++----
 .../operation/transform/MolodenskyTransform2D.java |  2 +-
 .../operation/transform/PassThroughTransform.java  | 10 +++++-----
 .../operation/transform/PowerTransform1D.java      |  8 ++++----
 .../operation/transform/ProjectiveTransform.java   |  2 +-
 .../operation/transform/ScaleTransform.java        |  2 +-
 .../operation/transform/TranslationTransform.java  |  2 +-
 .../operation/transform/WraparoundTransform.java   |  4 ++--
 .../operation/transform/MathTransformWrapper.java  |  8 ++++----
 23 files changed, 73 insertions(+), 74 deletions(-)

diff --git 
a/core/sis-feature/src/main/java/org/apache/sis/coverage/CategoryList.java 
b/core/sis-feature/src/main/java/org/apache/sis/coverage/CategoryList.java
index 8469de8..3537a98 100644
--- a/core/sis-feature/src/main/java/org/apache/sis/coverage/CategoryList.java
+++ b/core/sis-feature/src/main/java/org/apache/sis/coverage/CategoryList.java
@@ -525,10 +525,9 @@ final class CategoryList extends AbstractList<Category> 
implements MathTransform
     }
 
     /**
-     * Transforms a list of coordinate point ordinal values. This 
implementation accepts
-     * float or double arrays, since the quasi-totality of the implementation 
is the same.
-     * Locale variables still of the {@code double} type because this is the 
type used in
-     * {@link Category} objects.
+     * Transforms a list of coordinate values. This implementation accepts 
float or double arrays,
+     * since the quasi-totality of the implementation is the same. Locale 
variables still of the
+     * {@code double} type because this is the type used in {@link Category} 
objects.
      */
     private void transform(final double[] srcPts, final float[] srcFloat, int 
srcOff,
                            final double[] dstPts, final float[] dstFloat, int 
dstOff,
@@ -656,8 +655,8 @@ final class CategoryList extends AbstractList<Category> 
implements MathTransform
     }
 
     /**
-     * Transforms a list of coordinate point ordinal values. This method can 
be invoked only if {@link #categories}
-     * contains at least two elements, otherwise a {@code MathTransform} 
implementation from another package is used.
+     * Transforms a list of coordinate values. This method can be invoked only 
if {@link #categories} contains
+     * at least two elements, otherwise a {@code MathTransform} implementation 
from another package is used.
      */
     @Override
     public final void transform(double[] srcPts, int srcOff, double[] dstPts, 
int dstOff, int numPts) throws TransformException {
@@ -666,8 +665,8 @@ final class CategoryList extends AbstractList<Category> 
implements MathTransform
     }
 
     /**
-     * Transforms a list of coordinate point ordinal values. This method can 
be invoked only if {@link #categories}
-     * contains at least two elements, otherwise a {@code MathTransform} 
implementation from another package is used.
+     * Transforms a list of coordinate values. This method can be invoked only 
if {@link #categories} contains
+     * at least two elements, otherwise a {@code MathTransform} implementation 
from another package is used.
      */
     @Override
     public final void transform(float[] srcPts, int srcOff, float[] dstPts, 
int dstOff, int numPts) throws TransformException {
@@ -676,8 +675,8 @@ final class CategoryList extends AbstractList<Category> 
implements MathTransform
     }
 
     /**
-     * Transforms a list of coordinate point ordinal values. This method can 
be invoked only if {@link #categories}
-     * contains at least two elements, otherwise a {@code MathTransform} 
implementation from another package is used.
+     * Transforms a list of coordinate values. This method can be invoked only 
if {@link #categories} contains
+     * at least two elements, otherwise a {@code MathTransform} implementation 
from another package is used.
      */
     @Override
     public final void transform(float[] srcPts, int srcOff, double[] dstPts, 
int dstOff, int numPts) throws TransformException {
@@ -686,8 +685,8 @@ final class CategoryList extends AbstractList<Category> 
implements MathTransform
     }
 
     /**
-     * Transforms a list of coordinate point ordinal values. This method can 
be invoked only if {@link #categories}
-     * contains at least two elements, otherwise a {@code MathTransform} 
implementation from another package is used.
+     * Transforms a list of coordinate values. This method can be invoked only 
if {@link #categories} contains
+     * at least two elements, otherwise a {@code MathTransform} implementation 
from another package is used.
      */
     @Override
     public final void transform(double[] srcPts, int srcOff, float[] dstPts, 
int dstOff, int numPts) throws TransformException {
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConcatenatedTransform.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConcatenatedTransform.java
index 3f75019..df91e71 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConcatenatedTransform.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConcatenatedTransform.java
@@ -571,7 +571,7 @@ class ConcatenatedTransform extends AbstractMathTransform 
implements Serializabl
     }
 
     /**
-     * Transforms a single coordinate in a list of ordinal values,
+     * Transforms a single position in a list of coordinate values,
      * and optionally returns the derivative at that location.
      *
      * @throws TransformException if {@link #transform1} or {@link 
#transform2} failed.
@@ -605,7 +605,7 @@ class ConcatenatedTransform extends AbstractMathTransform 
implements Serializabl
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values. The source 
points are first
+     * Transforms many positions in a list of coordinate values. The source 
points are first
      * transformed by {@link #transform1}, then the intermediate points are 
transformed by
      * {@link #transform2}. The transformations are performed without 
intermediate buffer
      * if it can be avoided.
@@ -688,7 +688,7 @@ class ConcatenatedTransform extends AbstractMathTransform 
implements Serializabl
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values. The source 
points are first
+     * Transforms many positions in a list of coordinate values. The source 
points are first
      * transformed by {@link #transform1}, then the intermediate points are 
transformed by
      * {@link #transform2}. An intermediate buffer of type {@code double[]} 
for intermediate
      * results is used for reducing rounding errors.
@@ -750,7 +750,7 @@ class ConcatenatedTransform extends AbstractMathTransform 
implements Serializabl
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values. The source 
points are first
+     * Transforms many positions in a list of coordinate values. The source 
points are first
      * transformed by {@link #transform1}, then the intermediate points are 
transformed by
      * {@link #transform2}. An intermediate buffer of type {@code double[]} 
for intermediate
      * results is used for reducing rounding errors.
@@ -792,7 +792,7 @@ class ConcatenatedTransform extends AbstractMathTransform 
implements Serializabl
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values. The source 
points are first
+     * Transforms many positions in a list of coordinate values. The source 
points are first
      * transformed by {@link #transform1}, then the intermediate points are 
transformed by
      * {@link #transform2}. The transformations are performed without 
intermediate buffer
      * if it can be avoided.
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConcatenatedTransformDirect.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConcatenatedTransformDirect.java
index c713579..cb774e7 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConcatenatedTransformDirect.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConcatenatedTransformDirect.java
@@ -69,7 +69,7 @@ class ConcatenatedTransformDirect extends 
ConcatenatedTransform {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final double[] srcPts, final int srcOff,
@@ -82,7 +82,7 @@ class ConcatenatedTransformDirect extends 
ConcatenatedTransform {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final float[]  srcPts, final int srcOff,
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConstantTransform1D.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConstantTransform1D.java
index e479c57..d229adb 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConstantTransform1D.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConstantTransform1D.java
@@ -68,7 +68,7 @@ final class ConstantTransform1D extends LinearTransform1D {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final double[] srcPts, int srcOff,
@@ -78,7 +78,7 @@ final class ConstantTransform1D extends LinearTransform1D {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final float[] srcPts, int srcOff,
@@ -88,7 +88,7 @@ final class ConstantTransform1D extends LinearTransform1D {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final double[] srcPts, int srcOff,
@@ -98,7 +98,7 @@ final class ConstantTransform1D extends LinearTransform1D {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final float [] srcPts, int srcOff,
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/CopyTransform.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/CopyTransform.java
index 74d4951..2070b1c 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/CopyTransform.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/CopyTransform.java
@@ -155,8 +155,8 @@ final class CopyTransform extends AbstractLinearTransform {
     }
 
     /**
-     * Transforms a single coordinate in a list of ordinal values, and 
optionally returns
-     * the derivative at that location.
+     * Transforms a single position in a list of coordinate values,
+     * and optionally returns the derivative at that location.
      */
     @Override
     public Matrix transform(final double[] srcPts, final int srcOff,
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/EllipsoidToCentricTransform.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/EllipsoidToCentricTransform.java
index 0b5dbd1..c4d6d17 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/EllipsoidToCentricTransform.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/EllipsoidToCentricTransform.java
@@ -861,7 +861,7 @@ next:   while (--numPts >= 0) {
         }
 
         /**
-         * Inverse transforms a single coordinate in a list of ordinal values,
+         * Inverse transforms a single position in a list of coordinate values,
          * and optionally returns the derivative at that location.
          *
          * <p>This method delegates the derivative computation to the 
enclosing class, then inverses the result.
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ExponentialTransform1D.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ExponentialTransform1D.java
index 8db0aae..1ad8bb8 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ExponentialTransform1D.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ExponentialTransform1D.java
@@ -157,7 +157,7 @@ final class ExponentialTransform1D extends 
AbstractMathTransform1D implements Se
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final double[] srcPts, int srcOff, final double[] 
dstPts, int dstOff, int numPts) {
@@ -175,7 +175,7 @@ final class ExponentialTransform1D extends 
AbstractMathTransform1D implements Se
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final float[] srcPts, int srcOff, final float[] 
dstPts, int dstOff, int numPts) {
@@ -193,7 +193,7 @@ final class ExponentialTransform1D extends 
AbstractMathTransform1D implements Se
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final double[] srcPts, int srcOff, final float[] 
dstPts, int dstOff, int numPts) {
@@ -203,7 +203,7 @@ final class ExponentialTransform1D extends 
AbstractMathTransform1D implements Se
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final float[] srcPts, int srcOff, final double[] 
dstPts, int dstOff, int numPts) {
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/IdentityTransform.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/IdentityTransform.java
index e10135d..5991ab2 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/IdentityTransform.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/IdentityTransform.java
@@ -170,7 +170,7 @@ final class IdentityTransform extends 
AbstractLinearTransform {
     }
 
     /**
-     * Transforms a single coordinate in a list of ordinal values,
+     * Transforms a single position in a list of coordinate values,
      * and optionally returns the derivative at that location.
      */
     @Override
@@ -185,7 +185,7 @@ final class IdentityTransform extends 
AbstractLinearTransform {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final double[] srcPts, int srcOff,
@@ -195,7 +195,7 @@ final class IdentityTransform extends 
AbstractLinearTransform {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final float[] srcPts, int srcOff,
@@ -205,7 +205,7 @@ final class IdentityTransform extends 
AbstractLinearTransform {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final double[] srcPts, int srcOff,
@@ -218,7 +218,7 @@ final class IdentityTransform extends 
AbstractLinearTransform {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final float [] srcPts, int srcOff,
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/IdentityTransform1D.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/IdentityTransform1D.java
index 359f68d..d442fe7 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/IdentityTransform1D.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/IdentityTransform1D.java
@@ -53,7 +53,7 @@ final class IdentityTransform1D extends LinearTransform1D {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final double[] srcPts, int srcOff,
@@ -63,7 +63,7 @@ final class IdentityTransform1D extends LinearTransform1D {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final float[] srcPts, int srcOff,
@@ -73,7 +73,7 @@ final class IdentityTransform1D extends LinearTransform1D {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final double[] srcPts, int srcOff,
@@ -85,7 +85,7 @@ final class IdentityTransform1D extends LinearTransform1D {
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final float [] srcPts, int srcOff,
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedGeocentricTransform2D.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedGeocentricTransform2D.java
index cef584f..f352aa6 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedGeocentricTransform2D.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedGeocentricTransform2D.java
@@ -49,7 +49,7 @@ final class InterpolatedGeocentricTransform2D extends 
InterpolatedGeocentricTran
     }
 
     /**
-     * Computes the derivative at the given position point.
+     * Computes the derivative at the given position.
      */
     @Override
     public Matrix derivative(Point2D point) throws TransformException {
@@ -106,7 +106,7 @@ final class InterpolatedGeocentricTransform2D extends 
InterpolatedGeocentricTran
         }
 
         /**
-         * Computes the derivative at the given position point.
+         * Computes the derivative at the given position.
          */
         @Override
         public Matrix derivative(Point2D point) throws TransformException {
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedMolodenskyTransform2D.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedMolodenskyTransform2D.java
index 343ba1e..14c959c 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedMolodenskyTransform2D.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedMolodenskyTransform2D.java
@@ -49,7 +49,7 @@ final class InterpolatedMolodenskyTransform2D extends 
InterpolatedMolodenskyTran
     }
 
     /**
-     * Computes the derivative at the given position point.
+     * Computes the derivative at the given position.
      */
     @Override
     public Matrix derivative(Point2D point) throws TransformException {
@@ -106,7 +106,7 @@ final class InterpolatedMolodenskyTransform2D extends 
InterpolatedMolodenskyTran
         }
 
         /**
-         * Computes the derivative at the given position point.
+         * Computes the derivative at the given position.
          */
         @Override
         public Matrix derivative(Point2D point) throws TransformException {
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedTransform.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedTransform.java
index 53800ce..44591bf 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedTransform.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedTransform.java
@@ -501,7 +501,7 @@ public class InterpolatedTransform extends 
DatumShiftTransform {
         }
 
         /**
-         * Transforms a single coordinate tuple in a list of ordinal values,
+         * Transforms a single position in a list of coordinate values,
          * and optionally returns the derivative at that location.
          *
          * @throws TransformException if there is no convergence.
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedTransform2D.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedTransform2D.java
index cfee16f..3ac1327 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedTransform2D.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/InterpolatedTransform2D.java
@@ -48,7 +48,7 @@ final class InterpolatedTransform2D extends 
InterpolatedTransform implements Mat
     }
 
     /**
-     * Computes the derivative at the given position point.
+     * Computes the derivative at the given position.
      */
     @Override
     public Matrix derivative(Point2D point) throws TransformException {
@@ -109,7 +109,7 @@ final class InterpolatedTransform2D extends 
InterpolatedTransform implements Mat
         }
 
         /**
-         * Computes the derivative at the given position point.
+         * Computes the derivative at the given position.
          */
         @Override
         public Matrix derivative(Point2D point) throws TransformException {
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LinearTransform1D.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LinearTransform1D.java
index 63e3e73..0259a0b 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LinearTransform1D.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LinearTransform1D.java
@@ -252,7 +252,7 @@ class LinearTransform1D extends AbstractMathTransform1D 
implements LinearTransfo
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values. The default 
implementation
+     * Transforms many positions in a list of coordinate values. The default 
implementation
      * computes the values from the {@link #scale} and {@link #offset} 
coefficients.
      */
     @Override
@@ -273,7 +273,7 @@ class LinearTransform1D extends AbstractMathTransform1D 
implements LinearTransfo
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values. The default 
implementation
+     * Transforms many positions in a list of coordinate values. The default 
implementation
      * computes the values from the {@link #scale} and {@link #offset} 
coefficients using
      * the {@code double} precision, then casts the result to the {@code 
float} type.
      */
@@ -295,7 +295,7 @@ class LinearTransform1D extends AbstractMathTransform1D 
implements LinearTransfo
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values. The default 
implementation
+     * Transforms many positions in a list of coordinate values. The default 
implementation
      * computes the values from the {@link #scale} and {@link #offset} 
coefficients using
      * the {@code double} precision, then casts the result to the {@code 
float} type.
      */
@@ -309,7 +309,7 @@ class LinearTransform1D extends AbstractMathTransform1D 
implements LinearTransfo
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values. The default 
implementation
+     * Transforms many positions in a list of coordinate values. The default 
implementation
      * computes the values from the {@link #scale} and {@link #offset} 
coefficients.
      */
     @Override
@@ -322,7 +322,7 @@ class LinearTransform1D extends AbstractMathTransform1D 
implements LinearTransfo
     }
 
     /**
-     * Transforms many distance vectors in a list of ordinal values.
+     * Transforms many distance vectors in a list of coordinate values.
      * The default implementation computes the values from the {@link #scale} 
coefficient only.
      *
      * @since 0.7
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LogarithmicTransform1D.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LogarithmicTransform1D.java
index 1e48884..4e362ca 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LogarithmicTransform1D.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LogarithmicTransform1D.java
@@ -213,7 +213,7 @@ class LogarithmicTransform1D extends 
AbstractMathTransform1D implements Serializ
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final double[] srcPts, int srcOff, final double[] 
dstPts, int dstOff, int numPts) {
@@ -231,7 +231,7 @@ class LogarithmicTransform1D extends 
AbstractMathTransform1D implements Serializ
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final float[] srcPts, int srcOff, final float[] 
dstPts, int dstOff, int numPts) {
@@ -249,7 +249,7 @@ class LogarithmicTransform1D extends 
AbstractMathTransform1D implements Serializ
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final double[] srcPts, int srcOff, final float[] 
dstPts, int dstOff, int numPts) {
@@ -259,7 +259,7 @@ class LogarithmicTransform1D extends 
AbstractMathTransform1D implements Serializ
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final float[] srcPts, int srcOff, final double[] 
dstPts, int dstOff, int numPts) {
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/MolodenskyTransform2D.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/MolodenskyTransform2D.java
index 1f762df..9059038 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/MolodenskyTransform2D.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/MolodenskyTransform2D.java
@@ -61,7 +61,7 @@ class MolodenskyTransform2D extends MolodenskyTransform 
implements MathTransform
     }
 
     /**
-     * Computes the derivative at the given position point.
+     * Computes the derivative at the given position.
      */
     @Override
     public Matrix derivative(Point2D point) throws TransformException {
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/PassThroughTransform.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/PassThroughTransform.java
index df4e10f..ffa9321 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/PassThroughTransform.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/PassThroughTransform.java
@@ -274,7 +274,7 @@ public class PassThroughTransform extends 
AbstractMathTransform implements Seria
     }
 
     /**
-     * Transforms a single coordinate in a list of ordinal values, and 
opportunistically
+     * Transforms a single position in a list of coordinate values, and 
opportunistically
      * computes the transform derivative if requested.
      *
      * @return {@inheritDoc}
@@ -423,7 +423,7 @@ public class PassThroughTransform extends 
AbstractMathTransform implements Seria
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      *
      * @throws TransformException if the {@linkplain #subTransform 
sub-transform} failed.
      */
@@ -433,7 +433,7 @@ public class PassThroughTransform extends 
AbstractMathTransform implements Seria
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      *
      * @throws TransformException if the {@linkplain #subTransform 
sub-transform} failed.
      */
@@ -443,7 +443,7 @@ public class PassThroughTransform extends 
AbstractMathTransform implements Seria
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      *
      * @throws TransformException if the {@linkplain #subTransform 
sub-transform} failed.
      */
@@ -467,7 +467,7 @@ public class PassThroughTransform extends 
AbstractMathTransform implements Seria
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      *
      * @throws TransformException if the {@linkplain #subTransform 
sub-transform} failed.
      */
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/PowerTransform1D.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/PowerTransform1D.java
index 064402e..9fdd2db 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/PowerTransform1D.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/PowerTransform1D.java
@@ -113,7 +113,7 @@ final class PowerTransform1D extends 
AbstractMathTransform1D implements Serializ
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final double[] srcPts, int srcOff, final double[] 
dstPts, int dstOff, int numPts) {
@@ -131,7 +131,7 @@ final class PowerTransform1D extends 
AbstractMathTransform1D implements Serializ
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final float[] srcPts, int srcOff, final float[] 
dstPts, int dstOff, int numPts) {
@@ -149,7 +149,7 @@ final class PowerTransform1D extends 
AbstractMathTransform1D implements Serializ
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final double[] srcPts, int srcOff, final float[] 
dstPts, int dstOff, int numPts) {
@@ -159,7 +159,7 @@ final class PowerTransform1D extends 
AbstractMathTransform1D implements Serializ
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public void transform(final float[] srcPts, int srcOff, final double[] 
dstPts, int dstOff, int numPts) {
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ProjectiveTransform.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ProjectiveTransform.java
index c7ead0b..c90ea4d 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ProjectiveTransform.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ProjectiveTransform.java
@@ -206,7 +206,7 @@ class ProjectiveTransform extends AbstractLinearTransform 
implements ExtendedPre
     }
 
     /**
-     * Converts a single coordinate point in a list of ordinal values,
+     * Converts a single coordinate point in a list of coordinate values,
      * and optionally computes the derivative at that location.
      *
      * @return {@inheritDoc}
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ScaleTransform.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ScaleTransform.java
index 6a98aad..544e37e 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ScaleTransform.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ScaleTransform.java
@@ -171,7 +171,7 @@ final class ScaleTransform extends AbstractLinearTransform 
implements ExtendedPr
     }
 
     /**
-     * Converts a single coordinate point in a list of ordinal values,
+     * Converts a single position in a list of coordinate values,
      * and optionally computes the derivative at that location.
      *
      * @return {@inheritDoc}
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/TranslationTransform.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/TranslationTransform.java
index b149a0d..f43f024 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/TranslationTransform.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/TranslationTransform.java
@@ -192,7 +192,7 @@ final class TranslationTransform extends 
AbstractLinearTransform implements Exte
     }
 
     /**
-     * Converts a single coordinate point in a list of ordinal values,
+     * Converts a single position in a list of coordinate values,
      * and optionally computes the derivative at that location.
      *
      * @return {@inheritDoc}
diff --git 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/WraparoundTransform.java
 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/WraparoundTransform.java
index 51281db..2fbec99 100644
--- 
a/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/WraparoundTransform.java
+++ 
b/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/WraparoundTransform.java
@@ -322,7 +322,7 @@ public class WraparoundTransform extends 
AbstractMathTransform implements Serial
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      * The default implementation delegates to {@link #shift(double)} for each 
point.
      */
     @Override
@@ -338,7 +338,7 @@ public class WraparoundTransform extends 
AbstractMathTransform implements Serial
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      * The default implementation delegates to {@link #shift(double)} for each 
point.
      */
     @Override
diff --git 
a/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/transform/MathTransformWrapper.java
 
b/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/transform/MathTransformWrapper.java
index e113a99..d687e49 100644
--- 
a/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/transform/MathTransformWrapper.java
+++ 
b/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/transform/MathTransformWrapper.java
@@ -98,7 +98,7 @@ public strictfp class MathTransformWrapper extends 
FormattableObject implements
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public final void transform(final double[] srcPts, final int srcOff,
@@ -109,7 +109,7 @@ public strictfp class MathTransformWrapper extends 
FormattableObject implements
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public final void transform(final float[] srcPts, final int srcOff,
@@ -120,7 +120,7 @@ public strictfp class MathTransformWrapper extends 
FormattableObject implements
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public final void transform(final float [] srcPts, final int srcOff,
@@ -131,7 +131,7 @@ public strictfp class MathTransformWrapper extends 
FormattableObject implements
     }
 
     /**
-     * Transforms many coordinates in a list of ordinal values.
+     * Transforms many positions in a list of coordinate values.
      */
     @Override
     public final void transform(final double[] srcPts, final int srcOff,

Reply via email to