public class FortuneSweep
Initialises new FortuneSweep instance
NB: logger
and especially watcher
will affect performance!
Use them only for debug purposes!
public init(logger: FortuneSweepLogging? = nil, watcher: FortuneSweepProgressWatching? = nil)
- logger: - logger: Optional. Calls
log
function when importand events happen - watcher: - watcher: Optional. Affects performance! Tracks diagram building process. May be used for visualisation as it includes useful scaffolding.
Service Data Structures
var eventQueue: PriorityQueue<Event>!
var beachline: Beachline!
var sweepLineY: Double
var firstSiteY: Double?
var container: Rectangle!
var clipper: Rectangle!
Debug Data structures
var logger: FortuneSweepLogging?
var watcher: FortuneSweepProgressWatching?
var currentStep: Int
var isTerminated: Bool!
Result Data Structure
var diagram: Diagram!
public func compute(sites: Set<Site>, diagram: inout Diagram, clippingRect: Rectangle, maxStepsCount: Int = -1) -> Bool
Runs one step of an algorithm
func debug_step() -> Bool
Performs one step of the algorithm
private func step()
- Pop an event from the event queue
- Check the event type and process the event appropriately
Processes Site event and performs all the necessary actions
private func processSiteEvent(_ event: Event)
- event: - event: Site Event to process
When Circle event took place we must create a Vertex record in the Diagram.
private func createVertex(_ vertex: Vertex, removedArc: Arc)
- vertex: - vertex: Vertex coordinate (e.g. Circle event center)
- removedArc: - removedArc: The arc that will be removed from the Beachline after the Circle event
Processes circle event and performs all the necessary actions
private func processCircleEvent(_ event: Event)
- event: - event: Circle Event
Creates circle event for the coresponding Arc in the Beachline Adds Circle Event into Priority Queue Sets ponters between Circle Event and Arc
private func createCircleEvent(_ arc: Arc)
- arc: - arc: Beachline arc to add event
- circle: - circle: Circle represented by three points
Removes circle event from the Priority Queue and removes event from the Arc
private func removeCircleEvent(_ arc: Arc?)
- arc: - arc: Arc to strip from Circle Event
Algorithm termination
private func terminate()
- Bound incomplete arcs to Maximum rectangle
- Complete incomplete cells
- Clip cells to clipping rectangle
Some of the cells will not be completed (Are not looped linked list of half-edges)
private func completeIncompleteCell(_ cell: Cell)
- cell: - cell: cell to complete
Bounds incomplete arcs to the maximum rectangle
Maximum rectangle is a Rectangle
containing ALL diagram vertexes. It is expanded as
private func boundIncompleteArc(_ arc: Arc)
- arc: - arc:
Arc
from the beachline
Clips cell agains clipping Rectangle
. There are few limitations:
private func clipCell(_ cell: Cell, clippingRect: Rectangle)
- cell: - cell: cell to clip
- clippingRect: - clippingRect: clipping rect
Returns linked list of half-edges belonging to the clipping rect (maximum 4) represented as a pair
private func halfEdgesChain(cell: Cell, clippingRect: Rectangle, start: Site, end: Site) -> (HalfEdge, HalfEdge)?
- cell: - cell: half-edges owning
Cell
- clippingRect: - clippingRect: Clipping rectangle
- start: - start: head origin
- end: - end: tail destination
Finds the intersection point for the bisector of the Line Segment defined by two points and Rectangle
private func getBoxIntersection(_ p1: Site, _ p2: Site, _ rectangle: Rectangle) -> Site
- p1: - p1: Point
- p2: - p2: Point
- rectangle: - rectangle: Rectangle
When the Cell has common edge with another cell, thir corresponding HalfEdges are twins.
It means they have a pointer to each other and a.origin == b.destination
and vice versa
This helper sets appropriate pointers between half edges
private func makeTwins(_ a: HalfEdge?, _ b: HalfEdge?)
Each cell is represented as Doubly connected linked list of HalfEdges This helper connects two half edges appropriately
private func connect(prev: HalfEdge?, next: HalfEdge?)
Receives three arcs as an input and returns a circle, if the arc's points are not collinear and converging.
Convergence means that at some point mid
arc will be removed (Circle event will take place)
Keep in mind that the fact that three points define a circle is not enough for circle event to take place
private func checkCircleEvent(left: Arc?, mid: Arc, right: Arc?) -> Circle?
- left: - left: left arc
- mid: - mid: middle arc
- right: - right: right arc