Implements a one-way graph layout algorithm. The one-way layout ensures that links enter into nodes from the same general direction and exit them from the opposite side. If the graph contains cycles, some links bend around the nodes to keep the enter/exit direction consistent. The algorithm aims to minimize the number of such links.
Namespace: com.mindfusion.diagramming
Package: com.mindfusion.diagramming
SyntaxJava
Copy Code
|
|---|
public class OneWayLayout extends AbstractLayout |
Inheritance Hierarchyjava.lang.Object![]()
com.mindfusion.diagramming.AbstractLayout
com.mindfusion.diagramming.OneWayLayout
See Also