SweepLineEvent constructor

SweepLineEvent(
  1. Object? label,
  2. double xValue,
  3. Object? obj
)

Creates an INSERT event.

@param label the edge set label for this object @param x the event location @param obj the object being inserted

Implementation

SweepLineEvent(this.label, this.xValue, this.obj) {
  this.eventType = INSERT;
}