From 68a33722c8cdd90f8afd009da1ab44a31b4422ea Mon Sep 17 00:00:00 2001 From: Antonio Carzaniga Date: Sat, 9 Jan 2021 20:33:40 +0100 Subject: [PATCH] removed random colors from rotation faces. --- balls.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/balls.c b/balls.c index e645d34..ef08c56 100644 --- a/balls.c +++ b/balls.c @@ -376,8 +376,6 @@ void init_ball_face(struct ball * b, cairo_surface_t * face, int rotation) { cairo_arc(ball_cr, 0.0, 0.0, b->radius, 0, 2 * M_PI); cairo_clip(ball_cr); - cairo_set_source_rgb(ball_cr, 1.0*(rand() % 256)/255, 1.0*(rand() % 256)/255, 1.0*(rand() % 256)/255); - cairo_paint(ball_cr); if (face) { int face_x_offset = cairo_image_surface_get_width (face) / 2; int face_y_offset = cairo_image_surface_get_height (face) / 2; @@ -385,6 +383,9 @@ void init_ball_face(struct ball * b, cairo_surface_t * face, int rotation) { cairo_scale (ball_cr, 1.0 * b->radius / face_x_offset, 1.0 * b->radius / face_y_offset); cairo_set_source_surface(ball_cr, face, -face_x_offset, -face_y_offset); cairo_paint(ball_cr); + } else { + cairo_set_source_rgb(ball_cr, 1.0*(rand() % 256)/255, 1.0*(rand() % 256)/255, 1.0*(rand() % 256)/255); + cairo_paint(ball_cr); } cairo_surface_flush(b->faces[i]); cairo_destroy(ball_cr);