Skip to content

Instantly share code, notes, and snippets.

View Jayson330's full-sized avatar

Jayson Shenk Jayson330

View GitHub Profile
@Jayson330
Jayson330 / character.pde
Created September 1, 2025 15:24
Creative Coding Character
size(320, 240); // screen size, the examples in the book are hard to see
ellipseMode(CORNERS);
fill(255, 117, 24); // orange is my favorite color and fall is in the air in Ohio
ellipse(20, 20, 50, 50); // head
line(5, 5, 25, 25); // left antenna
line(44, 22, 60, 5); // right antenna
rectMode(CENTER); // these are the character's eyes
fill(0, 0, 0);
rect(30, 32, 5, 5);
rect(40, 32, 5, 5);