Initial Command Line structure

This commit is contained in:
Stef Tervelde
2025-04-18 17:42:31 +02:00
parent ecd219b03d
commit fd571d13d5
4 changed files with 89 additions and 3 deletions

View File

@@ -1,12 +1,25 @@
import processing.core.PApplet;
import java.io.IOException;
public class Basic extends PApplet {
public void settings(){
size(500, 500);
try {
Runtime.getRuntime().exec("echo Hello World");
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public void draw(){
ellipse(width / 2f, height / 2f, 125f, 125f);
background(255);
fill(0);
ellipse(mouseX, mouseY, 125f, 125f);
println(frameRate);
}