Class SweepLineEvent
Inheritance
SweepLineEvent
Assembly: NetTopologySuite.dll
Syntax
public class SweepLineEvent : IComparable
Constructors
|
Edit this page
View Source
SweepLineEvent(double, SweepLineEvent)
Declaration
public SweepLineEvent(double x, SweepLineEvent insertEvent)
Parameters
Type |
Name |
Description |
double |
x |
The event location
|
SweepLineEvent |
insertEvent |
The corresponding INSERT event
|
|
Edit this page
View Source
SweepLineEvent(object, double, object)
Declaration
public SweepLineEvent(object label, double x, object obj)
Parameters
Type |
Name |
Description |
object |
label |
The edge set label for this object.
|
double |
x |
The event location
|
object |
obj |
the object being inserted
|
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
IsDelete
Declaration
public bool IsDelete { get; }
Property Value
|
Edit this page
View Source
IsInsert
Declaration
public bool IsInsert { get; }
Property Value
|
Edit this page
View Source
Object
Declaration
public object Object { get; }
Property Value
Methods
|
Edit this page
View Source
CompareTo(object)
Events are ordered first by their x-value, and then by their eventType.
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
|
Edit this page
View Source
IsSameLabel(SweepLineEvent)
Declaration
public bool IsSameLabel(SweepLineEvent ev)
Parameters
Returns
Implements