Skip to content

Instantly share code, notes, and snippets.

@andersource
andersource / python_turtle_bingo_background.py
Created April 3, 2024 20:02
Code used to generate the Python Turtle Bingo background, inspired by pottery painted using a color "splash"
from tqdm import tqdm
import numpy as np
from skimage.io import imsave
MAX_TILE_SIZE = 120
W, H = 1840, 4200
BACKGROUND = np.array([252, 250, 255], dtype=np.uint8)
SPLASH = np.array([60, 67, 117], dtype=np.uint8)
N = 10000