Skip to content

Commit 02e1ea5

Browse files
committed
Disabling stroke perspective in P3D
1 parent bb66c08 commit 02e1ea5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/processing/opengl/PGraphics3D.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class PGraphics3D extends PGraphicsOpenGL {
3535

3636
public PGraphics3D() {
3737
super();
38-
hints[ENABLE_STROKE_PERSPECTIVE] = true;
38+
hints[ENABLE_STROKE_PERSPECTIVE] = false;
3939
}
4040

4141
//////////////////////////////////////////////////////////////

java/libraries/lwjgl/src/processing/lwjgl/PGraphics3D.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class PGraphics3D extends PGraphicsLWJGL {
1414

1515
public PGraphics3D() {
1616
super();
17-
hints[ENABLE_STROKE_PERSPECTIVE] = true;
17+
hints[ENABLE_STROKE_PERSPECTIVE] = false;
1818
}
1919

2020
//////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)