Skip to content

Commit fa7a073

Browse files
committed
Removed clutter.
1 parent 8f4c989 commit fa7a073

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/main/java/engine/processing/ProcessingApplication.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import engine.input.MouseInput;
88
import processing.core.PApplet;
99
import workspace.GraphicsPImpl;
10-
import workspace.Workspace;
1110
import workspace.ui.Graphics;
1211

1312
public class ProcessingApplication extends PApplet {
@@ -18,8 +17,6 @@ public class ProcessingApplication extends PApplet {
1817

1918
private static ApplicationSettings settings;
2019

21-
private Workspace workspace;
22-
2320
@Override
2421
public void settings() {
2522
size(settings.getWidth(), settings.getHeight(), P3D);
@@ -35,10 +32,6 @@ public void setup() {
3532
container.setGraphics(g);
3633
getSurface().setTitle(settings.getTitle());
3734
setupInput();
38-
// workspace = new Workspace(this);
39-
// workspace.setLoop(true);
40-
// workspace.setGridVisible(false);
41-
// workspace.setUiVisible(false);
4235
container.initialize();
4336
noCursor();
4437
}
@@ -54,8 +47,6 @@ private void setupInput() {
5447
public void draw() {
5548
colorMode(RGB);
5649
background(0);
57-
scale(100);
58-
strokeWeight(0.01f);
5950
noLights();
6051
container.update();
6152
container.render();

0 commit comments

Comments
 (0)