implemented createFont, and changed objectXYZ to modelXYZ

This commit is contained in:
benfry
2005-04-16 02:24:19 +00:00
parent b29c35fb75
commit cf39815ab1
6 changed files with 104 additions and 30 deletions

View File

@@ -2130,18 +2130,18 @@ public class PGraphics extends PImage implements PConstants {
return 0;
}
public float objectX(float x, float y, float z) {
depthErrorXYZ("objectX");
public float modelX(float x, float y, float z) {
depthErrorXYZ("modelX");
return 0;
}
public float objectY(float x, float y, float z) {
depthErrorXYZ("objectY");
public float modelY(float x, float y, float z) {
depthErrorXYZ("modelY");
return 0;
}
public float objectZ(float x, float y, float z) {
depthErrorXYZ("objectZ");
public float modelZ(float x, float y, float z) {
depthErrorXYZ("modelZ");
return 0;
}