Table of Contents

Interface IEntireCoordinateSequenceFilter

Namespace
NetTopologySuite.Geometries
Assembly
NetTopologySuite.dll

A variant of ICoordinateSequenceFilter, except it receives each CoordinateSequence just once, instead of once for each of its coordinates.

public interface IEntireCoordinateSequenceFilter

Properties

Done

Reports whether the application of this filter can be terminated.

bool Done { get; }

Property Value

bool

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.

bool GeometryChanged { get; }

Property Value

bool

Remarks

Most filters can simply return a constant value reflecting whether they are able to change the coordinates.

Methods

Filter(CoordinateSequence)

Performs an operation on a CoordinateSequence.

void Filter(CoordinateSequence seq)

Parameters

seq CoordinateSequence

The CoordinateSequence.