diff --git a/core/src/processing/core/PGraphicsJava2D.java b/core/src/processing/core/PGraphicsJava2D.java index efce3fc92..a73d8e8ea 100644 --- a/core/src/processing/core/PGraphicsJava2D.java +++ b/core/src/processing/core/PGraphicsJava2D.java @@ -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); +// } } } diff --git a/core/todo.txt b/core/todo.txt index 65a1d1501..b966a6525 100644 --- a/core/todo.txt +++ b/core/todo.txt @@ -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