FAQ
Cover
This is the archive Discourse for the Processing (ALPHA) software.
Please visit the new Processing forum for current information.

   Processing 1.0 _ALPHA_
   Bugs
   Bug Fixes, Implemented Suggestions
(Moderator: fry)
   Editor, Curves and strange save thing
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: Editor, Curves and strange save thing  (Read 370 times)
baffo

WWW
Editor, Curves and strange save thing
« on: Sep 8th, 2003, 10:59pm »

(very sorry if this is well known stuff)
 
buglets or misfeatures of the editor:
 
(this happens under Windows 2000 with processing-0058 )
 
1) Ctrl-B will beautify the code and send the cursor back to the beginning of the the text. Then you have to scroll back to where you were... ok, so maybe I am a heavy user of Ctrl-B.
 
2) Ctrl-Z will undo, but the window will not scroll to where the "undoing" is happening. This contrasts with typical behaviour in (say) Microsoft Word, and can lead the user to assume that actually nothing is happening and overundo.
 
3) (more like something that should be mentioned in documentation) If a curve crosses upon itself, the POLYGON filling comes out strange. Here is some example code.
 
size(150,150);
beginShape(POLYGON);
curveVertex(10,10);
curveVertex(10,10);
curveVertex(100,100);
curveVertex(100,10);
curveVertex(10,100);
curveVertex(10,10);
curveVertex(10,10);
endShape();
 
4) It could be that my application has grown too big, but now I notice that, occasionally, when I Save and Run the application in fact what is run is an older version of the code. Quitting the environment and restarting it fixes the problem.
 
Love,
 
    W.
 
 

-- art is not where you think you're going to find it
fry


WWW
Re: Editor, Curves and strange save thing
« Reply #1 on: Sep 21st, 2003, 7:49pm »

#3 and #4 are known bugs that are documented elsewhere on this board and soon to be fixed. but could you post #1 and #2 as separate items? thanks for the info.
 
Pages: 1 

« Previous topic | Next topic »