more error notes, remove set() from PGraphicsJava2D

This commit is contained in:
benfry
2009-04-03 21:30:00 +00:00
parent 20b0022a34
commit c51af1d523
2 changed files with 24 additions and 5 deletions
@@ -467,11 +467,11 @@ public class PGraphicsJava2D extends PGraphics /*PGraphics2D*/ {
public void point(float x, float y) {
if (stroke) {
if (strokeWeight > 1) {
line(x, y, x + EPSILON, y + EPSILON);
} else {
set((int) screenX(x, y), (int) screenY(x, y), strokeColor);
}
// if (strokeWeight > 1) {
line(x, y, x + EPSILON, y + EPSILON);
// } else {
// set((int) screenX(x, y), (int) screenY(x, y), strokeColor);
// }
}
}
+19
View File
@@ -1,5 +1,24 @@
0166 core
X disable point() going to set() from PGraphicsJava2D
X set() doesn't honor alpha consistently
X also causes problems with PDF
_ noCursor() doesn't work in present mode
_ http://dev.processing.org/bugs/show_bug.cgi?id=1177
_ modelx/y/z broken when aiming a camera
_ http://dev.processing.org/bugs/show_bug.cgi?id=1074
_ resizing window distorts gl graphics
_ http://dev.processing.org/bugs/show_bug.cgi?id=1176
_ in P2D, two vertex() line calls with fill() causes duplicate output
_ works fine in other renderers, has to do with tesselation
_ http://dev.processing.org/bugs/show_bug.cgi?id=1191
_ extra triangles being seen in P2D
_ http://dev.processing.org/bugs/show_bug.cgi?id=1192
_ look into replacing nanoxml
_ http://www.exampledepot.com/egs/javax.xml.parsers/pkg.html
_ noloop ref even says that redraw will be called on resize, make sure it is
_ if no draw() method, and renderer is not displayable, then exit
_ static mode PDFs shouldn't just hang