mirror of
https://github.com/zint/zint
synced 2024-11-16 20:57:25 +13:00
Adding hexagon height to zint_render_hexagon
This commit is contained in:
parent
c7d6256a6e
commit
0a913ad9e3
@ -51,7 +51,7 @@ struct zint_render_line *render_plot_create_line(float x, float y, float width,
|
|||||||
int render_plot_add_line(struct zint_symbol *symbol, struct zint_render_line *line, struct zint_render_line **last_line);
|
int render_plot_add_line(struct zint_symbol *symbol, struct zint_render_line *line, struct zint_render_line **last_line);
|
||||||
struct zint_render_ring *render_plot_create_ring(float x, float y, float radius, float line_width);
|
struct zint_render_ring *render_plot_create_ring(float x, float y, float radius, float line_width);
|
||||||
int render_plot_add_ring(struct zint_symbol *symbol, struct zint_render_ring *ring, struct zint_render_ring **last_ring);
|
int render_plot_add_ring(struct zint_symbol *symbol, struct zint_render_ring *ring, struct zint_render_ring **last_ring);
|
||||||
struct zint_render_hexagon *render_plot_create_hexagon(float x, float y);
|
struct zint_render_hexagon *render_plot_create_hexagon(float x, float y, float height);
|
||||||
int render_plot_add_hexagon(struct zint_symbol *symbol, struct zint_render_hexagon *hexagon, struct zint_render_hexagon **last_hexagon);
|
int render_plot_add_hexagon(struct zint_symbol *symbol, struct zint_render_hexagon *hexagon, struct zint_render_hexagon **last_hexagon);
|
||||||
|
|
||||||
int render_plot_add_string(struct zint_symbol *symbol, unsigned char *text, float x, float y, float fsize, float width, struct zint_render_string **last_string);
|
int render_plot_add_string(struct zint_symbol *symbol, unsigned char *text, float x, float y, float fsize, float width, struct zint_render_string **last_string);
|
||||||
@ -351,7 +351,7 @@ int render_plot(struct zint_symbol *symbol, const float width, const float heigh
|
|||||||
for (r = 0; r < symbol->rows; r++) {
|
for (r = 0; r < symbol->rows; r++) {
|
||||||
for (i = 0; i < symbol->width; i++) {
|
for (i = 0; i < symbol->width; i++) {
|
||||||
if (module_is_set(symbol, r, i)) {
|
if (module_is_set(symbol, r, i)) {
|
||||||
struct zint_render_hexagon *hexagon = render_plot_create_hexagon(((i * 0.88) + ((r & 1) ? 1.76 : 1.32)) * scaler, ((r * 0.76) + 0.76) * scaler);
|
struct zint_render_hexagon *hexagon = render_plot_create_hexagon(((i * 0.88) + ((r & 1) ? 1.76 : 1.32)) * scaler, ((r * 0.76) + 0.76) * scaler, 1. * scaler);
|
||||||
render_plot_add_hexagon(symbol, hexagon, &last_hexagon);
|
render_plot_add_hexagon(symbol, hexagon, &last_hexagon);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -731,7 +731,7 @@ int render_plot_add_ring(struct zint_symbol *symbol, struct zint_render_ring *ri
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct zint_render_hexagon *render_plot_create_hexagon(float x, float y) {
|
struct zint_render_hexagon *render_plot_create_hexagon(float x, float y, float height) {
|
||||||
struct zint_render_hexagon *hexagon;
|
struct zint_render_hexagon *hexagon;
|
||||||
|
|
||||||
hexagon = (struct zint_render_hexagon*) malloc(sizeof (struct zint_render_hexagon));
|
hexagon = (struct zint_render_hexagon*) malloc(sizeof (struct zint_render_hexagon));
|
||||||
@ -739,6 +739,7 @@ struct zint_render_hexagon *render_plot_create_hexagon(float x, float y) {
|
|||||||
hexagon->next = NULL;
|
hexagon->next = NULL;
|
||||||
hexagon->x = x;
|
hexagon->x = x;
|
||||||
hexagon->y = y;
|
hexagon->y = y;
|
||||||
|
hexagon->height = height;
|
||||||
|
|
||||||
return hexagon;
|
return hexagon;
|
||||||
}
|
}
|
||||||
|
@ -55,7 +55,7 @@ extern "C" {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct zint_render_hexagon {
|
struct zint_render_hexagon {
|
||||||
float x, y;
|
float x, y, height;
|
||||||
struct zint_render_hexagon *next; /* Pointer to next hexagon */
|
struct zint_render_hexagon *next; /* Pointer to next hexagon */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user