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;
|
||||
}
|
||||
|
||||
|
||||
@@ -1,3 +1,20 @@
|
||||
0087 core
|
||||
|
||||
fixed in previous releases
|
||||
X The PushPop example in Transformations is not working
|
||||
X with lights() callled
|
||||
X The transparency of the Rotate3D example in Translformations
|
||||
X is not as expected
|
||||
X lighting totally sucks (both PGraphics3 and PGraphicsGL)
|
||||
X bring in materials for opengl as well?
|
||||
X don't include a class, just make it similar to the light functions
|
||||
X sphere() and box() should set normals and take textures
|
||||
X background color seems to be wrong?
|
||||
X check this once lighting actually works
|
||||
X printarr() of null array crashes without an error
|
||||
X actually, errors from many crashes not coming through on the mac?
|
||||
|
||||
|
||||
0086 core
|
||||
X java 1.4 getButton() was inside the mouse handler
|
||||
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1114147314;start=3
|
||||
|
||||
@@ -1,18 +1,4 @@
|
||||
0087 core
|
||||
|
||||
fixed in previous releases
|
||||
X The PushPop example in Transformations is not working
|
||||
X with lights() callled
|
||||
X The transparency of the Rotate3D example in Translformations
|
||||
X is not as expected
|
||||
X lighting totally sucks (both PGraphics3 and PGraphicsGL)
|
||||
X bring in materials for opengl as well?
|
||||
X don't include a class, just make it similar to the light functions
|
||||
X sphere() and box() should set normals and take textures
|
||||
X background color seems to be wrong?
|
||||
X check this once lighting actually works
|
||||
X printarr() of null array crashes without an error
|
||||
X actually, errors from many crashes not coming through on the mac?
|
||||
0088 core
|
||||
|
||||
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
|
||||
Reference in New Issue
Block a user