|
| |
| Navigation |
Synopsis An ellipse.
Function
Description Draw an ellipse using the sizes given in properties
props.
An optional nested figure fig may be placed inside the ellipse.
Examples The fragment
e1 = ellipse(width(100), height(50), fillColor("red"));
render(e1);
will display:
Nesting, for instance, a box in an ellipse b1 = box(width(100), height(20), fillColor("yellow"));
e1 = ellipse(b1, std(gap(20)), fillColor("red"));
render(e1);
gives:
|