getting camera() into PGraphics, last of faq stuff, starting 0085

This commit is contained in:
benfry
2005-04-19 06:46:55 +00:00
parent 25602a8528
commit 7b7a0503b7
6 changed files with 101 additions and 69 deletions

View File

@@ -2073,6 +2073,16 @@ public class PGraphics extends PImage implements PConstants {
depthError("endCamera");
}
public void camera() {
depthError("camera");
}
public void camera(float eyeX, float eyeY, float eyeZ,
float centerX, float centerY, float centerZ,
float upX, float upY, float upZ) {
depthError("camera");
}
public void ortho() {
depthError("ortho");
}
@@ -2106,7 +2116,6 @@ public class PGraphics extends PImage implements PConstants {
depthError("printCamera");
}
public void printProjection() {
depthError("printCamera");
}