Geotools.Net

FlipYFilter.Filter Method 

Applies the flip filter.

[Visual Basic]
NotOverridable Public Sub Filter( _
   ByVal geometry As Geometry _
) Implements _
   IGeometryComponentFilter.Filter
[C#]
public void Filter(
   Geometry geometry
);

Parameters

geometry
The geometry object to apply the filter to.

Implements

IGeometryComponentFilter.Filter

Remarks

The following calculation is performed on the Y coordinate.

            coord.Y = (_max - coord.Y) + _min;
            

See Also

FlipYFilter Class | FlipYFilter Members | Geotools.Geometries Namespace