vector: Add width to struct zint_vector_circle: fix qzint render

This commit is contained in:
gitlost 2021-08-23 22:54:27 +01:00
parent 3388f98c00
commit b7adbf4e5b
2 changed files with 3 additions and 3 deletions

View file

@ -67,8 +67,8 @@ extern "C" {
struct zint_vector_circle {
float x, y;
float diameter; /* Circle diameter. Does not include width (if any) */
float width; /* Width of circle perimeter. 0 for fill (disc) */
int colour; /* Non-zero for draw with background colour */
float width; /* Width of circle perimeter (circumference). 0 for fill (disc) */
int colour; /* Non-zero for draw with background colour (else draw with foreground colour) */
struct zint_vector_circle *next; /* Pointer to next circle */
};