Class AffineTransform2D

Object
AffineTransform
AffineTransform2D
All Implemented Interfaces:
Serializable, Cloneable, MathTransform, MathTransform2D

public class AffineTransform2D extends AffineTransform implements MathTransform2D
A MathTransform2D backed by the Java2D AffineTransform.

Affine transforms are very commons in GIS - they can be used for scaling, flipping the y axis, applying unit conversions, etc.. The standard Java2D library provides an efficient general-purpose implementation of affine transform. This class extends the Java2D class for efficiency and for inter-operability with Java2D.

This affine transform is a special case of ProjectiveTransform restricted to the following cases:

Since:
3.1
See Also: