Search Results for

    Show / Hide Table of Contents

    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 Source

    Done

    Reports whether the application of this filter can be terminated.

    Declaration
    bool Done { get; }
    Property Value
    Type Description
    bool
    Remarks

    Once this method returns true it must continue to return true on every subsequent call.

    | Edit this page View Source

    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
    bool
    Remarks

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

    Methods

    | Edit this page View Source

    Filter(CoordinateSequence)

    Performs an operation on a CoordinateSequence.

    Declaration
    void Filter(CoordinateSequence seq)
    Parameters
    Type Name Description
    CoordinateSequence seq

    The CoordinateSequence.

    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX