|
| |
| Navigation |
Synopsis Grow (increase) the size of a figure relative to any contained figures.
Function
FProperty grow(num hg, num vg)
Description Grow the current figure relative to any contained figures. Growth is expressed as a factor larger than 1.
Note that:
Examples
b1 = box(size(100, 50), fillColor("blue"));
b2 = box(b1, grow(1.5), fillColor("yellow"));
render(b2);
|