This looks once again copied from the core PIC implementation
(lib/common/picgen.c) without accounting for the fact the core implementation’s
attrs macros are generated dynamically. The plugin generates a single macro,
attrs0, which it was incorrectly calling as attrs1. Related to #131.
/* A[] contains 2 points: the center and corner. */
gvprintf(job,
- "ellipse attrs%d %swid %.5f ht %.5f at (%.5f,%.5f);\n", 1,
+ "ellipse attrs0 %swid %.5f ht %.5f at (%.5f,%.5f);\n",
filled ? "fill " : "",
PS2INCH(2*(A[1].x - A[0].x)),
PS2INCH(2*(A[1].y - A[0].y)),