Class SweepLineEvent
Inheritance
SweepLineEvent
Assembly: NetTopologySuite.dll
Syntax
public class SweepLineEvent : IComparable
Constructors
|
Edit this page
View Source
SweepLineEvent(double, SweepLineEvent, SweepLineInterval)
Declaration
public SweepLineEvent(double x, SweepLineEvent insertEvent, SweepLineInterval sweepInt)
Parameters
Properties
|
Edit this page
View Source
DeleteEventIndex
Declaration
public int DeleteEventIndex { get; set; }
Property Value
|
Edit this page
View Source
InsertEvent
Declaration
public SweepLineEvent InsertEvent { get; }
Property Value
|
Edit this page
View Source
Interval
Declaration
public SweepLineInterval Interval { get; }
Property Value
|
Edit this page
View Source
IsDelete
Declaration
public bool IsDelete { get; }
Property Value
|
Edit this page
View Source
IsInsert
Declaration
public bool IsInsert { get; }
Property Value
Methods
|
Edit this page
View Source
CompareTo(object)
ProjectionEvents are ordered first by their x-value, and then by their eventType.
It is important that Insert events are sorted before Delete events, so that
items whose Insert and Delete events occur at the same x-value will be
correctly handled.
Declaration
public int CompareTo(object o)
Parameters
| Type |
Name |
Description |
| object |
o |
|
Returns
Implements