mirror of
https://git.code.sf.net/p/zint/code
synced 2025-05-23 19:46:56 -04:00
vector: Add width to struct zint_vector_circle & use for MaxiCode bullseye
**Incompatible change**
This commit is contained in:
parent
02c155b6b2
commit
3388f98c00
55 changed files with 171 additions and 238 deletions
|
@ -1019,20 +1019,21 @@ while (rect) {
|
|||
|
||||
hexagon = symbol->vector->hexagons;
|
||||
while (hexagon) {
|
||||
draw_hexagon(hexagon->x, hexagon->y, hexagon->diameter, hexagon->rotation):
|
||||
draw_hexagon(hexagon->x, hexagon->y, hexagon->diameter, hexagon->rotation);
|
||||
hexagon = hexagon->next;
|
||||
}
|
||||
|
||||
string = symbol->vector->strings;
|
||||
while (string) {
|
||||
draw_string(string->x, string->y, string->fsize, string->rotation,
|
||||
string->halign, string->text, string->length):
|
||||
string->halign, string->text, string->length);
|
||||
string = string->next;
|
||||
}
|
||||
|
||||
circle = symbol->vector->circles;
|
||||
while (circle) {
|
||||
draw_circle(circle->x, circle->y, circle->diameter, circle->colour):
|
||||
draw_circle(circle->x, circle->y, circle->diameter, circle->width,
|
||||
circle->colour);
|
||||
circle = circle->next;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue