Class ShapeBuilder.Edge

  • Enclosing class:
    ShapeBuilder<T extends org.locationtech.spatial4j.shape.Shape,​E extends ShapeBuilder<T,​E>>

    protected static final class ShapeBuilder.Edge
    extends java.lang.Object
    This helper class implements a linked list for Coordinate. It contains fields for a dateline intersection and component id
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static org.locationtech.jts.geom.Coordinate MAX_COORDINATE  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected Edge​(org.locationtech.jts.geom.Coordinate coordinate, ShapeBuilder.Edge next)  
      protected Edge​(org.locationtech.jts.geom.Coordinate coordinate, ShapeBuilder.Edge next, org.locationtech.jts.geom.Coordinate intersection)  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      protected org.locationtech.jts.geom.Coordinate intersection​(double position)
      Set the intersection of this line segment to the given position
      protected static org.locationtech.jts.geom.Coordinate position​(org.locationtech.jts.geom.Coordinate p1, org.locationtech.jts.geom.Coordinate p2, double position)  
      protected void setNext​(ShapeBuilder.Edge next)  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • MAX_COORDINATE

        public static final org.locationtech.jts.geom.Coordinate MAX_COORDINATE
    • Constructor Detail

      • Edge

        protected Edge​(org.locationtech.jts.geom.Coordinate coordinate,
                       ShapeBuilder.Edge next,
                       org.locationtech.jts.geom.Coordinate intersection)
      • Edge

        protected Edge​(org.locationtech.jts.geom.Coordinate coordinate,
                       ShapeBuilder.Edge next)
    • Method Detail

      • intersection

        protected org.locationtech.jts.geom.Coordinate intersection​(double position)
        Set the intersection of this line segment to the given position
        Parameters:
        position - position of the intersection [0..1]
        Returns:
        the Coordinate of the intersection
      • position

        protected static org.locationtech.jts.geom.Coordinate position​(org.locationtech.jts.geom.Coordinate p1,
                                                                       org.locationtech.jts.geom.Coordinate p2,
                                                                       double position)
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object