File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
src/main/java/engine/processing Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change 77import engine .input .MouseInput ;
88import processing .core .PApplet ;
99import workspace .GraphicsPImpl ;
10- import workspace .Workspace ;
1110import workspace .ui .Graphics ;
1211
1312public 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 ();
You can’t perform that action at this time.
0 commit comments