boxcolor.py

Created by schraf

Created on February 27, 2025

832 Bytes


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)

During your visit to our site, NumWorks needs to install "cookies" or use other technologies to collect data about you in order to:

With the exception of Cookies essential to the operation of the site, NumWorks leaves you the choice: you can accept Cookies for audience measurement by clicking on the "Accept and continue" button, or refuse these Cookies by clicking on the "Continue without accepting" button or by continuing your browsing. You can update your choice at any time by clicking on the link "Manage my cookies" at the bottom of the page. For more information, please consult our cookies policy.