final steps, change color

This commit is contained in:
Daniel Kauss Serna 2026-03-12 13:57:04 +01:00
parent d477b63748
commit eb42ca3aa6
5 changed files with 563 additions and 7 deletions

View file

@ -81,4 +81,11 @@ function draw() {
fill(255)
drawPoints(points, sizes);
let eye1 = points[0].getRel(HALF_PI / 2, 45)
let eye2 = points[0].getRel(-HALF_PI / 2, 45)
fill(0);
circle(eye1.x, eye1.y, 15);
circle(eye2.x, eye2.y, 15);
}