Skip to content

Instantly share code, notes, and snippets.

@rors
rors / Week_03
Last active February 16, 2023 15:54 — forked from EllaY44/Week_03
Week 3 homework question
def setup():
size(800, 700);
stroke(100, 100, 255, 80)
background(255)
frameRate(30)
fill(245, 242, 195)
rect(0, 0, 800, 700)
fill(40, 49, 48)
@rors
rors / Level_1.py
Last active October 22, 2021 16:33 — forked from sgodycki/Level_1.py
Sasha midterm
# global img
circleY = 300
circleDirection = 1
position = 0
startTime = 0
rectY = 200
rectDirection =1
def drawLevel1():
"""
Greta Villani
9/16/2020
Homework 1
"""
c = color(255,150,150)
fishTailLine = 60
bodyLength = 180
bodyHeight = 80
eyeX = 285
@rors
rors / test.py
Last active August 25, 2020 18:13
RS Test
import random
print("hello, rorys!")
if random.random() < .5:
print("hi!")
else:
print("bye!")