kicking off rev 88, depthXYZ() fix on modelX/Y/Z(), faq items

This commit is contained in:
benfry
2005-05-03 19:32:33 +00:00
parent 8180b931ce
commit 4bc2e0eea1
5 changed files with 41 additions and 29 deletions

View File

@@ -2199,7 +2199,7 @@ public class PGraphics extends PImage implements PConstants {
* coordinates of a shape.
*/
public float modelX(float x, float y, float z) {
depthErrorXYZ("modelX");
depthError("modelX");
return 0;
}
@@ -2208,7 +2208,7 @@ public class PGraphics extends PImage implements PConstants {
* Returns the model space y value for an x, y, z coordinate.
*/
public float modelY(float x, float y, float z) {
depthErrorXYZ("modelY");
depthError("modelY");
return 0;
}
@@ -2217,7 +2217,7 @@ public class PGraphics extends PImage implements PConstants {
* Returns the model space z value for an x, y, z coordinate.
*/
public float modelZ(float x, float y, float z) {
depthErrorXYZ("modelZ");
depthError("modelZ");
return 0;
}