org.geotools.geometry.iso.topograph2D.util
Interface CoordinateFilter
- All Known Implementing Classes:
- UniqueCoordinateArrayFilter
public interface CoordinateFilter
Geometry
classes support the concept of applying a
coordinate filter to every coordinate in the Geometry
. A
coordinate filter can either record information about each coordinate or
change the coordinate in some way. Coordinate filters implement the
interface CoordinateFilter
. (CoordinateFilter
is
an example of the Gang-of-Four Visitor pattern). Coordinate filters can be
used to implement such things as coordinate transformations, centroid and
envelope computation, and many other functions.
- Version:
- 1.7.2
Method Summary |
void |
filter(Coordinate coord)
Performs an operation with or on coord . |
filter
void filter(Coordinate coord)
- Performs an operation with or on
coord
.
- Parameters:
coord
- a Coordinate
to which the filter is applied.
Copyright © 1996-2010 Geotools. All Rights Reserved.