remove need for cameraMode(PERSPECTIVE) on each frame

This commit is contained in:
benfry
2005-02-05 03:36:54 +00:00
parent 9c7467d0bd
commit 5ab2a9043f
3 changed files with 13 additions and 17 deletions

View File

@@ -4974,14 +4974,13 @@ public class PGraphics extends PImage implements PMethods, PConstants {
// DEPTH
/** semi-placeholder */
public void depth() {
depth = true;
//dimensions = 3;
cameraMode(PERSPECTIVE);
}
/** semi-placeholder */
public void noDepth() {
depth = false;
//dimensions = 0;

View File

@@ -43,6 +43,8 @@ X very necessary, since opens window at 100x100
X problem was the threading issues
X bring back renderer menu
X reading/saving pref for opengl renderer
X remove cameraMode(PERSPECTIVE) on each frame
X why is the first one failing?
_ basic sample audio playback needed for p5
_ make separate java 1.1 and java 1.3 classes
@@ -80,9 +82,6 @@ _ what should the update image function be called?
_ get loop, noLoop, redraw, and framerate all working in opengl
_ needs custom animator thread..
_ and cameraMode(PERSPECTIVE) on each frame
o why is the first one failing?
_ be consistent about getXxx() methods
_ can ALPHA fonts work using the other replace modes?

View File

@@ -171,8 +171,6 @@ sure if related. same for PATH and CLASSPATH.
the trouble.
//
_ get an xml library in there
_ nanoxml problems with manifest
@@ -225,6 +223,9 @@ _ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_software_bugs
_ mouse wheel broken in the text editor? (windows jdk 1.5?)
_ implement horizontal version of PdeEditorButtons
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_Software;action=display;num=1076707944
......................................................................
@@ -301,13 +302,6 @@ o can java get the root directory for system/win32 etc?
export stuff
_ make multiple jar files thing work as an option
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_Software;action=display;num=1067360903;start=0
_ applet default is one file, application default is multiple
_ user in advanced mode can switch to the other
_ buttons on side of sketch do default (last) behavior
_ include a note that 'applet' folder will get emptied/rewritten
_ or rename the old applet folder to something else? (nah, too messy)
_ write export-to-application
_ lock feature for present mode (part of export to application?)
_ application can still do serial (qt, other stuff?)
@@ -325,9 +319,13 @@ _ this will need to detect whether the user has their own main()
_ or even BApplet.main(new String[] { getClass().getName() });
_ META-INF/MANIFEST.MF contains just "Main-Class: ClassName"
_ main sticking point will be serial/qtjava in exports
_ implement horizontal version of PdeEditorButtons
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_Software;action=display;num=1076707944
_ include a note that 'applet' folder will get emptied/rewritten
_ or rename the old applet folder to something else? (nah, too messy)
_ make multiple jar files thing work as an option
_ http://processing.org/discourse/yabb/YaBB.cgi?board=Proce55ing_Software;action=display;num=1067360903;start=0
_ applet default is one file, application default is multiple
_ user in advanced mode can switch to the other
_ buttons on side of sketch do default (last) behavior