This method has been removed.
Command line:
svn diff --extensions "--unified --ignore-space-change --ignore-all-space --ignore-eol-style" -r6476:6477 https://svn.osgeo.org/geotools/trunk/modules/library/referencing/src/main/java/org/geotools/referencing/operation/transform/AbstractMathTransform.java
Revision 6476 | Revision 6477 |
---|---|
} /** * Transform the specified shape. The default implementation compute * quadratic curves using three points for each shape's segments. * |
} /** * Makes sure that the specified longitude stay within ±180 degrees. This methpod should be * invoked after coordinates are transformed. This * method may add or substract an amount of 360° to <var>x</var>. * * @param x The longitude. * @return The longitude in the range +/- 180°. */ protected double ensureInRange(double x) { if (x > Math.PI) { x -= 2*Math.PI; } else if (x < -Math.PI) { x += 2*Math.PI; } return x; } /** * Transform the specified shape. The default implementation compute * quadratic curves using three points for each shape's segments. * |