This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global circleX, direction | |
circleX = 500 | |
direction = 8 | |
global circletwoX, directiontwo | |
circletwoX = 450 | |
directiontwo = 3 | |
global circlethreeX, directionthree | |
circlethreeX = 550 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") |