Node:Labeling Ellipses, Next:Affine Transformations for Ellipses, Previous:Ellipse Operators, Up:Ellipse Reference
void label ([const string pos = "top", [const bool dot = false, [Picture& picture = current_picture]]])
|
const function |
Labels the Points on points, using lowercase letters.
pos is used to position all of the labels. It is currently not
possible to have different positions for the labels.
Ellipse e(origin, 6, 4);
e.draw();
e.label();
|
void dotlabel ([string pos = "top", [Picture& picture = current_picture]])
|
Inline const function |
Like label(), except that the Points are dotted.
Ellipse e(origin, 6, 4);
e.draw();
e.dotlabel();
|