Initial commit
This commit is contained in:
17
src/Processing.java
Normal file
17
src/Processing.java
Normal 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);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user