mirror of
https://github.com/processing/processing4.git
synced 2026-02-13 18:35:37 +01:00
check into bezierVertex problem, fixing updatePixelsImpl
This commit is contained in:
@@ -268,7 +268,7 @@ public class PImage implements PConstants, Cloneable {
|
||||
}
|
||||
|
||||
|
||||
public void updatePixelsImpl(int x1, int y1, int x2, int y2) {
|
||||
protected void updatePixelsImpl(int x1, int y1, int x2, int y2) {
|
||||
if (!modified) {
|
||||
mx1 = x1;
|
||||
mx2 = x2;
|
||||
|
||||
@@ -11,6 +11,9 @@ X add a bunch of changes to the reference to support this
|
||||
X Duplicate 3d faces in beginRaw() export
|
||||
X this was actually doubling geometry, potentially a bit of a disaster
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=737
|
||||
o bezierVertex YZ Plane fill problem
|
||||
X http://dev.processing.org/bugs/show_bug.cgi?id=752
|
||||
X weird coplanar stuff, shouldn't be doing 3D anyway
|
||||
|
||||
cleanup
|
||||
X switch to requestImage() (done in 0145)
|
||||
@@ -51,9 +54,6 @@ _ should instead be inside size(), and init(), no?
|
||||
_ should we do joins when alpha is turned off?
|
||||
_ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=OpenGL;action=display;num=1210007450
|
||||
|
||||
_ bezierVertex YZ Plane fill problem
|
||||
_ http://dev.processing.org/bugs/show_bug.cgi?id=752
|
||||
|
||||
_ for begin/endRecord, use a piggyback mechanism
|
||||
_ that way won't have to pass a PApplet around
|
||||
_ this has a big impact on the SVG library
|
||||
|
||||
Reference in New Issue
Block a user