Depuis 2019 le logo est plus simple (pas de bandes à l’intersection), voici un exemple de code :
from kandinsky import *
RO, OR, ROR, WH = (252,9,17), (254,167,0), (254,105,0), (255,255,255)
R = 80 ** 2
for l in range(222):
for c in range(320):
rouge = (c - 100) ** 2 + (l - 111) ** 2 < R
orange = (c - 216) ** 2 + (l - 111) ** 2 < R
if rouge and orange: coul = ROR
elif rouge: coul = RO
elif orange: coul = OR
if orange or rouge: set_pixel(c,l,coul)