mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
more error notes, remove set() from PGraphicsJava2D
This commit is contained in:
@@ -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);
|
||||
// }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user