Package org.openstreetmap.josm.tools
Interface ImageWarp.PointTransform
-
- All Known Implementing Classes:
ImageWarp.GridTransform
- Enclosing class:
- ImageWarp
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface ImageWarp.PointTransform
Transformation that translates the pixel coordinates.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.awt.geom.Point2D
transform(double x, double y)
Translates pixel coordinates.
-
-
-
Method Detail
-
transform
java.awt.geom.Point2D transform(double x, double y)
Translates pixel coordinates.- Parameters:
x
- The x coordinatey
- The y coordinate- Returns:
- transformed pixel coordinates
-
-