Table of Contents

Interface IGeometryFilter

Namespace
NetTopologySuite.Geometries
Assembly
NetTopologySuite.dll

GeometryCollection classes support the concept of applying a IGeometryFilter to the Geometry. The filter is applied to every element Geometry. A IGeometryFilter can either record information about the Geometry or change the Geometry in some way. IGeometryFilter is an example of the Gang-of-Four Visitor pattern.

public interface IGeometryFilter

Methods

Filter(Geometry)

Performs an operation with or on geom.

void Filter(Geometry geom)

Parameters

geom Geometry

A Geometry to which the filter is applied.