mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
curvevertex fix, more todos
This commit is contained in:
@@ -290,6 +290,8 @@ public class PGraphics2 extends PGraphics {
|
||||
splineVertices[0], 0, VERTEX_FIELD_COUNT);
|
||||
System.arraycopy(splineVertices[DEFAULT_SPLINE_VERTICES - 2], 0,
|
||||
splineVertices[1], 0, VERTEX_FIELD_COUNT);
|
||||
System.arraycopy(splineVertices[DEFAULT_SPLINE_VERTICES - 1], 0,
|
||||
splineVertices[2], 0, VERTEX_FIELD_COUNT);
|
||||
splineVertexCount = 3;
|
||||
}
|
||||
|
||||
|
||||
+10
-3
@@ -1,10 +1,20 @@
|
||||
0091 core
|
||||
X change to synchronization to hopefully fix some update issues
|
||||
X curveVertex() problem in P2D when > 128 points fixed
|
||||
_ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115856359;start=0
|
||||
|
||||
_ currently some bugs in the main() because it's not sizing applets
|
||||
_ if running in present mode it works ok
|
||||
_ but that also needs its display set.. argh
|
||||
_ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115834600;start=0
|
||||
|
||||
_ need to test/straighten out load/update pixels
|
||||
loadPixels() and updatePixels() only need to be used when
|
||||
touching pixels[]. All other functions including get(), set(),
|
||||
filter(), etc shouldn't need them.
|
||||
_ fjen says blend() doens't work in JAVA2D
|
||||
|
||||
_ P3D is not doing bilinear interpolation?
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////
|
||||
@@ -88,9 +98,6 @@ _ cellular automata examples broken
|
||||
|
||||
CORE / PApplet - main()
|
||||
|
||||
_ currently some bugs in the main() because it's not sizing applets
|
||||
_ if running in present mode it works ok
|
||||
_ but that also needs its display set.. argh
|
||||
_ make the 1.4 code in PApplet load via reflection
|
||||
_ doesn't appear necessary with 1.3 applets
|
||||
_ or is some of the stuff usable in 1.3 but not all?
|
||||
|
||||
@@ -17,7 +17,7 @@ o make sure this is no longer the case
|
||||
o don't draw the nasty couple of pixels in the margin
|
||||
o http://processing.org/discourse/yabb_beta/YaBB.cgi?board=Suggestions;action=display;num=1115597365;start=0
|
||||
|
||||
_ have the shell script test for jikes first
|
||||
_ on linux, have the shell script test for jikes first
|
||||
_ have it run jikes quickly, if it exits with an error, warn user
|
||||
_ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115302894
|
||||
_ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115787397;start=0
|
||||
@@ -107,8 +107,11 @@ _ option to suppress warning dialogs
|
||||
_ starting with the one about modifying the sketch name for spaces
|
||||
|
||||
|
||||
PDE / Compiler (and preprocessor?)
|
||||
PDE / Compiler & Preprocessor?
|
||||
|
||||
_ jikes bugs mean some code just won't compile:
|
||||
_ include javac? would this be a good solution for linux?
|
||||
_ http://processing.org/discourse/yabb_beta/YaBB.cgi?board=SoftwareBugs;action=display;num=1115833916;start=0
|
||||
_ don't allow goofy case versions of reserved words
|
||||
_ keypressed should maybe throw an error
|
||||
_ an empty .java tab will throw an error
|
||||
|
||||
Reference in New Issue
Block a user