Package org.locationtech.jts.awt
Interface PointTransformation
- All Known Implementing Classes:
IdentityPointTransformation
,Viewport
public interface PointTransformation
Transforms a geometry
Coordinate
into a Java2D Point
,
possibly with a mathematical transformation of the ordinate values.
Transformation from a model coordinate system to a view coordinate system
can be efficiently performed by supplying an appropriate transformation.-
Method Summary
Modifier and TypeMethodDescriptionvoid
transform
(Coordinate src, Point2D dest) Transforms aCoordinate
into a Java2DPoint
.
-
Method Details
-
transform
Transforms aCoordinate
into a Java2DPoint
.- Parameters:
src
- the source Coordinatedest
- the destination Point
-