Initial commit

This commit is contained in:
Quinn
2023-04-05 22:34:54 -05:00
commit b280f0e98d
7 changed files with 90 additions and 0 deletions

17
src/Processing.java Normal file
View File

@@ -0,0 +1,17 @@
import processing.core.PApplet;
public class Processing extends PApplet {
public static void main(String[] args) {
PApplet.main("Processing");
}
public void settings(){
size(200, 200);
}
public void draw(){
background(0);
ellipse(mouseX, mouseY, 20, 20);
}
}