Wiki source code of KLay Mr. Tree
Last modified by Richard Kreissig on 2023/09/14 10:23
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | == Project Overview == | ||
2 | Responsible: | ||
3 | |||
4 | * {{mention reference="XWiki.cds" style="FULL_NAME" anchor="XWiki-cds-KlptB"/}} | ||
5 | |||
6 | This project is all about developing a tree layout algorithm. [[We pity the fool>>url:http://www.youtube.com/watch?v=DJnKm6ftPu0||shape="rect"]] who doesn't use Mr. Tree Layout! | ||
7 | |||
8 | **Page Contents** | ||
9 | |||
10 | |||
11 | |||
12 | {{toc minLevel="2"/}} | ||
13 | |||
14 | |||
15 | Mr. Tree is a layout algorithm for trees. It uses the algorithm fromĀ [[A Node-Positioning Algorithm for General Trees, John Q.Walker II>>url:http://dl.acm.org/citation.cfm?id=79026||shape="rect"]] to layout trees. To do this it uses four phases plus a pre-processing to build a corresponding data structure. The first phase "treeifying" transforms the given graph into a tree if necessary. To do this, edges which destroy the tree property will be removed and stored, so that they can be reinserted during a post processing. In the second phase "orderNodes" the nodes of each level are separated into leaves and inner nodes. Inner nodes are (% class="hps short_text" lang="en" %)arranged(%%) into the middle of the level and then whitespace in the level is filled with leaves. The third phase "NodePlacer" uses the algorithm first mentioned from John Q.Walker II to compute the actual position of the nodes. The last phase routeEdges sets the positions for the edges corresponding to the positions of the nodes. | ||
16 | |||
17 | Each phase uses intermediate processors for small computations on the graph. The corresponding processors are defined in each phase. Some are defined multiple times, but they are invoked only once between phases. | ||
18 | |||
19 | == Options == | ||
20 | |||
21 | Currently only the node weighting for the node order can be changed by the user through the option: Weighting of Nodes | ||
22 | |||
23 | The possibilities for "Weighting of Nodes" are: | ||
24 | |||
25 | * DESCENDANTS: The weighting of a node is the number of nodes in the subtree starting at the corresponding node. | ||
26 | * FAN: The weighting of a node is the maximal number of nodes in the same level of the subtree starting at the corresponding node. | ||
27 | |||
28 | == Literature == | ||
29 | |||
30 | Related publications: | ||
31 | |||
32 | * [[J. Q. Walker, II. 1990. A node-positioning algorithm for general trees. Softw. Pract. Exper. 20, 7 (July 1990)>>url:http://dl.acm.org/citation.cfm?id=79026||shape="rect"]] | ||
33 | * [[A. Rusu, Rowan University, Tree drawing algorithms>>url:http://cs.brown.edu/~~rt/gdhandbook/chapters/trees.pdf||shape="rect"]] | ||
34 | * ((( | ||
35 | [[Kaufmann, M., & Wagner, D. (Eds.). (2001). Drawing graphs: methods and models (Vol. 2025). Springer>>url:http://dl.acm.org/citation.cfm?id=376944&coll=DL&dl=GUIDE&CFID=239149682&CFTOKEN=43363665||shape="rect"]] | ||
36 | ))) | ||
37 | * [[Wetherell, C.S. and A. Shannon. Tidy Drawings of Trees. IEEE Trans- actions on Software Engineering SE-5, 5 (September 1979) 514-520.>>url:http://www.computer.org/csdl/trans/ts/1979/05/01702661-abs.html||shape="rect"]] | ||
38 | |||
39 | == Features == | ||
40 | |||
41 | Mr.Tree is a layout algorithm that lays out a graph in a tree layout. It contains the following features: | ||
42 | |||
43 | * Support for graphs with cycles or other graphs that are hardly trees | ||
44 | * Support of aesthetic rules as described in Wetherell and Shannon | ||
45 | * Support of whitespace reduction | ||
46 | |||
47 | Some other features that can be thought of being implemented in the future: | ||
48 | |||
49 | * Support for node and edge labels | ||
50 | * Support for different (% class="hps short_text" lang="en" %)weighting(% class="short_text" lang="en" %) (% class="hps short_text" lang="en" %)option | ||
51 | * Support for different edge routings | ||
52 | * Different kinds of tree layouts (top-down tree, left-to-right tree, radial tree...) | ||
53 |