.PP
\fBshape=record polygon epsf \fIbuiltin_polygon\fR
.br
-\fIbuiltin_polygon\fR is one of: \fBplaintext ellipse circle egg
+\fIbuiltin_polygon\fR is one of: \fBplaintext ellipse oval circle egg
triangle box diamond trapezium parallelogram house hexagon octagon.\fR
(Polygons are defined or modified by the following node attributes:
\fBregular\fR, \fBperipheries\fR, \fBsides\fR, \fBorientation\fR,
#include "htmltable.h"
#include <limits.h>
-#ifdef WITH_CODEGENS
-extern codegen_t VRML_CodeGen;
-#endif
-
#define RBCONST 12
#define RBCURVE .5
/* polygon descriptions. "polygon" with 0 sides takes all user control */
-/* regul perip sides orien disto skew */
+/* regul perip sides orien disto skew */
static polygon_t p_polygon = { FALSE, 1, 0, 0., 0., 0. };
/* builtin polygon descriptions */
{"box", &poly_fns, &p_box},
{"polygon", &poly_fns, &p_polygon},
{"ellipse", &poly_fns, &p_ellipse},
+ {"oval", &poly_fns, &p_ellipse},
{"circle", &poly_fns, &p_circle},
{"point", &point_fns, &p_circle},
{"egg", &poly_fns, &p_egg},