|
| |
| Navigation |
Synopsis Define the drawing style of trees.
Function
FProperty manhattan(bool b)
Description Determine drawing style for trees:
Examples
t1 = tree(box(fillColor("green")),
[ box(fillColor("red")),
box(fillColor("blue"))
],
std(size(50)), std(gap(20)), manhattan(true)
);
render(t1);
t2 = tree(box(fillColor("green")),
[ box(fillColor("red")),
box(fillColor("blue"))
],
std(size(50)), std(gap(20)), manhattan(false)
);
render(t2);
|