Class AbstractEdgeRouter.SimplePathMaker

  • All Implemented Interfaces:
    java.util.function.Function<java.util.List<java.awt.Point>,​java.awt.geom.Path2D>
    Enclosing class:
    AbstractEdgeRouter

    public static class AbstractEdgeRouter.SimplePathMaker
    extends java.lang.Object
    implements java.util.function.Function<java.util.List<java.awt.Point>,​java.awt.geom.Path2D>
    Basic path maker that just uses straight line segments
    • Constructor Summary

      Constructors 
      Constructor Description
      SimplePathMaker()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.awt.geom.Path2D apply​(java.util.List<java.awt.Point> points)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.function.Function

        andThen, compose
    • Constructor Detail

      • SimplePathMaker

        public SimplePathMaker()
    • Method Detail

      • apply

        public java.awt.geom.Path2D apply​(java.util.List<java.awt.Point> points)
        Specified by:
        apply in interface java.util.function.Function<java.util.List<java.awt.Point>,​java.awt.geom.Path2D>