from kandinsky import * c1 = (255, 0, 127) # Pink c2 = (255, 191, 0) # Orange def rvb01(c): return tuple(v / 255 for v in c) def rvb255(c): return tuple(int(255 * v) for v in c) def zip01(c1, c2): return zip(rvb01(c1), rvb01(c2)) def alpha(c1, t, c2): return rvb255(a * t + b * (1 - t) for (a, b) in zip01(c1, c2)) def interpole_couleur(c1, c2, t): return alpha(c1, t, c2) def ellipse(cx, cy, rx, ry, c, t): for x in range(cx - rx, cx + rx): for y in range(cy - ry, cy + ry): if ((x - cx) / rx) ** 2 + ((y - cy) / ry) ** 2 <= 1: rvb = alpha(c, t, get_pixel(x, y)) set_pixel(x, y, rvb) def effet(t): cx, cy = 160, 136 n = 10 for i in range(n): ry = 80 - i * 6 rx = 120 + 2 * i couleur = interpole_couleur(c1, c2, i / (n - 1)) ellipse(cx, cy - i * 12, rx, ry, couleur, t) effet(0.2)