mirror of
https://github.com/processing/processing4.git
synced 2026-02-11 09:39:19 +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
|
||||
|
||||
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
|
||||
@@ -1,3 +1,17 @@
|
||||
0087 pde
|
||||
X bug with creating a new tab that's a .java file
|
||||
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115059069;start=0
|
||||
X shouldn't be able to add new tabs or files to a read-only sketch
|
||||
X can't save a sketch with its own name because already has that name
|
||||
X small explanation and tiny example(s) for the following?
|
||||
X modelX(), modelY(), modelZ(), screenZ(), openStream(), normal()
|
||||
X check for updates should happen only daily or weekly
|
||||
|
||||
already completed in 86
|
||||
X remove requirement for osx to install fink
|
||||
X only used for 'head'
|
||||
|
||||
|
||||
0086 pde
|
||||
X new versions of java for windows and linux: 1.4.2_07
|
||||
X update faq on site? what's difference between versions?
|
||||
|
||||
@@ -1,15 +1,10 @@
|
||||
0087 pde
|
||||
X bug with creating a new tab that's a .java file
|
||||
X http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115059069;start=0
|
||||
X shouldn't be able to add new tabs or files to a read-only sketch
|
||||
X can't save a sketch with its own name because already has that name
|
||||
X small explanation and tiny example(s) for the following?
|
||||
X modelX(), modelY(), modelZ(), screenZ(), openStream(), normal()
|
||||
X check for updates should happen only daily or weekly
|
||||
0088 pde
|
||||
X rev 87 on linux included a version of jikes built on redhat 7.3
|
||||
_ check to make sure this still works on the fc3 box
|
||||
|
||||
already completed in 86
|
||||
X remove requirement for osx to install fink
|
||||
X only used for 'head'
|
||||
_ renaming a .java file only shows the name w/o .java
|
||||
_ which makes you rename the file to a .pde instead
|
||||
_ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Collaboration;action=display;num=1115122925;start=3
|
||||
|
||||
|
||||
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
|
||||
|
||||
Reference in New Issue
Block a user