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
| Improve this Doc View SourceDone
Reports whether the application of this filter can be terminated.
Declaration
bool Done { get; }
Property Value
Type | Description |
---|---|
Boolean |
Remarks
Once this method returns true it must continue to return true on every subsequent call.
GeometryChanged
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 |
---|---|
Boolean |
Remarks
Most filters can simply return a constant value reflecting whether they are able to change the coordinates.
Methods
| Improve this Doc View SourceFilter(CoordinateSequence)
Performs an operation on a CoordinateSequence.
Declaration
void Filter(CoordinateSequence seq)
Parameters
Type | Name | Description |
---|---|---|
CoordinateSequence | seq | The CoordinateSequence. |