Inheritance
PolygonExtracter
Assembly: NetTopologySuite.dll
public class PolygonExtracter : IGeometryFilter
Constructors
|
Improve this Doc
View Source
Constructs a PolygonExtracterFilter with a list in which to store Polygons found.
Declaration
public PolygonExtracter(IList<Geometry> comps)
Parameters
Methods
|
Improve this Doc
View Source
Declaration
public void Filter(Geometry geom)
Parameters
|
Improve this Doc
View Source
Declaration
public static IList<Geometry> GetPolygons(Geometry geom)
Parameters
Type |
Name |
Description |
Geometry |
geom |
The geometry from which to extract
|
Returns
|
Improve this Doc
View Source
Declaration
public static IList<Geometry> GetPolygons(Geometry geom, IList<Geometry> list)
Parameters
Type |
Name |
Description |
Geometry |
geom |
The geometry from which to extract
|
IList<Geometry> |
list |
The list to add the extracted elements to
|
Returns
Implements