mirror of
https://github.com/processing/processing4.git
synced 2026-02-12 10:00:42 +01:00
kicking off rev 88, depthXYZ() fix on modelX/Y/Z(), faq items
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user