Class CircleLayoutAlgorithm<V>

    • Field Detail

      • CIRCLE_REDUCE_EDGE_CROSSING_MAX_EDGES

        protected static final String CIRCLE_REDUCE_EDGE_CROSSING_MAX_EDGES
        See Also:
        Constant Field Values
      • radius

        protected double radius
      • reduceEdgeCrossing

        protected boolean reduceEdgeCrossing
      • vertexOrderedList

        protected List<V> vertexOrderedList
      • reduceEdgeCrossingMaxEdges

        protected int reduceEdgeCrossingMaxEdges
      • cancelled

        protected boolean cancelled
    • Constructor Detail

      • CircleLayoutAlgorithm

        public CircleLayoutAlgorithm()
    • Method Detail

      • getRadius

        public double getRadius()
        Returns:
        the radius of the circle.
      • setRadius

        public void setRadius​(double radius)
        Sets the radius of the circle. Must be called before initialize() is called.
        Parameters:
        radius - the radius of the circle
      • getCrossingCount

        public int getCrossingCount()
      • isThreaded

        public boolean isThreaded()
        Specified by:
        isThreaded in interface Threaded
      • setThreaded

        public void setThreaded​(boolean threaded)
        Specified by:
        setThreaded in interface Threaded
      • setVertexOrder

        public void setVertexOrder​(LayoutModel<V> layoutModel,
                                   List<V> vertexList)
        Sets the order of the vertices in the layout according to the ordering of vertex_list.
        Parameters:
        vertexList - a list specifying the ordering of the vertices
      • visit

        public void visit​(LayoutModel<V> layoutModel)
        Description copied from interface: LayoutAlgorithm
        visit the passed layoutModel and set its locations
        Specified by:
        visit in interface LayoutAlgorithm<V>
        Parameters:
        layoutModel - the mediator between the container for vertices (the Graph) and the mapping from Vertex to Point
      • countCrossings

        public <E> int countCrossings()