Skip to content

Commit e46306f

Browse files
committed
so a_maintest will run netbeans
1 parent c25bf10 commit e46306f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import processing.core.PApplet;
22
import joons.JoonsRenderer;
33

4-
@SuppressWarnings("serial")
4+
55
public class a_maintest extends PApplet {
66

77
JoonsRenderer jr;
@@ -21,12 +21,10 @@ public class a_maintest extends PApplet {
2121
float zNear = 5;
2222
float zFar = 10000;
2323

24-
@Override
2524
public void settings() {
2625
size(800, 600, P3D);
2726
}
2827

29-
@Override
3028
public void setup() {
3129

3230
jr = new JoonsRenderer(this);
@@ -38,7 +36,6 @@ public void setup() {
3836
//jr.setDOF(170, 5); //Set depth of field of camera, (focus distance, lens radius). Larger radius => more blurry.
3937
}
4038

41-
@Override
4239
public void draw() {
4340
jr.beginRecord(); //Make sure to include methods you want rendered.
4441
camera(eyeX, eyeY, eyeZ, centerX, centerY, centerZ, upX, upY, upZ);
@@ -116,7 +113,6 @@ public void draw() {
116113
/**
117114
* Press 'r' key to start rendering.
118115
*/
119-
@Override
120116
public void keyPressed() {
121117
if (key == 'r' || key == 'R') {
122118
jr.render();

0 commit comments

Comments
 (0)