Interface IEntireCoordinateSequenceFilter
A variant of ICoordinateSequenceFilter, except it receives each CoordinateSequence just once, instead of once for each of its coordinates.
Namespace: NetTopologySuite.Geometries
Assembly: NetTopologySuite.dll
Syntax
public interface IEntireCoordinateSequenceFilter
Properties
| Edit this page View SourceDone
Reports whether the application of this filter can be terminated.
Declaration
bool Done { get; }
Property Value
Type | Description |
---|---|
bool |
Remarks
| Edit this page View SourceGeometryChanged
Reports whether the execution of this filter has modified the coordinates of the geometry. If so, GeometryChanged() will be executed after this filter has finished being executed.
Declaration
bool GeometryChanged { get; }
Property Value
Type | Description |
---|---|
bool |
Remarks
Most filters can simply return a constant value reflecting whether they are able to change the coordinates.
Methods
| Edit this page View SourceFilter(CoordinateSequence)
Performs an operation on a CoordinateSequence.
Declaration
void Filter(CoordinateSequence seq)
Parameters
Type | Name | Description |
---|---|---|
CoordinateSequence | seq | The CoordinateSequence. |