Added files

This commit is contained in:
2026-05-29 09:27:52 +03:00
commit 9b23bbe141
13 changed files with 2509 additions and 0 deletions

16
main.py Normal file
View File

@@ -0,0 +1,16 @@
#!/bin/python3
from p5 import *
from regions import get_region_coords
# Put code to run once here
def setup():
pass
# Put code to run when the mouse is pressed here
def mouse_pressed():
pixel_colour = Color(get(mouse_x, mouse_y)).hex
run()