java.lang.Object
com.treemap.swing.fastvoronoi.originalconvexhull.Edge

public class Edge extends Object
Class for representing an Edge in the JConvexHull. Contains the origin and destination vertices, the twin edge, the incident JFace and the next and previous edge in the incident JFace
  • Constructor Details

  • Method Details

    • setDest

      public void setDest(Vertex dest)
    • isEqual

      public boolean isEqual(Vertex origin, Vertex dest)
    • getSource

      public Vertex getSource()
    • setSource

      public void setSource(Vertex source)
    • getTwin

      public Edge getTwin()
    • setTwin

      public void setTwin(Edge twin)
    • getFacet

      public Facet getFacet()
    • setFacet

      public void setFacet(Facet facet)
    • getNext

      public Edge getNext()
    • setNext

      public void setNext(Edge next)
    • getPrev

      public Edge getPrev()
    • setPrev

      public void setPrev(Edge prev)
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • getDest

      public Vertex getDest()
    • isHorizon

      public boolean isHorizon()
    • findHorizon

      public void findHorizon(List<Edge> horizon)