Skip to content

Instantly share code, notes, and snippets.

@EllaY44
EllaY44 / Week_01_Sketch
Created January 29, 2023 22:45
first gist for homework
size(350,500)
noStroke()
background(225,246,255)
fill(101,67,33)
rect(100,220,100,270)
fill(109,185,102)
ellipse(150,200,300,200)
img = loadImage("Raster-Image-Test.png")
@EllaY44
EllaY44 / Week_03
Created February 14, 2023 21:10
Week 3 homework question
def setup():
size(800, 700);
stroke(100, 100, 255, 80)
background(255)
frameRate(30)
def draw():
fill(245, 242, 195)
rect(0, 0, 800, 700)
@EllaY44
EllaY44 / homework 4
Created February 21, 2023 00:53
homework week 4 question
global circleX, direction
circleX = 500
direction = 8
global circletwoX, directiontwo
circletwoX = 450
directiontwo = 3
global circlethreeX, directionthree
circlethreeX = 550