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_
   Programming Questions & Help
   Syntax
(Moderators: fry, REAS)
   Hello...first sketch and question
« Previous topic | Next topic »

Pages: 1 
   Author  Topic: Hello...first sketch and question  (Read 429 times)
solomonP

WWW
Hello...first sketch and question
« on: Feb 4th, 2005, 7:20pm »

Hello,
 
Just started working with Processing.  It's great!  I've wanted a platform like this for years that could free me from the hard core programming aspect of computer graphics, and let me concentrate on the algorithms.
 
I have created my first Processing sketch called Circulate, and posted it at:
http://porterbleicher.g2gm.net/p5/circulate/
 
I have not been able to make the hierarchy lines show in the web version, though they do show in the Processing IDE.  If anyone wants to help me figure out why this is I'd be appreciative.
 
Regards,
Leo
 

http://porterbleicher.g2gm.net/computed-paintings/
fjen

WWW
Re: Hello...first sketch and question
« Reply #1 on: Feb 5th, 2005, 1:24am »

try to use a mousehandler not the mousePressed-boolean:
 
Code:
void setup() {; /*something*/ }
void loop() {; /*something*/ }
 
void mouseReleased()
{
  /*what you have in the if(mousePressed) goes here ...*/
}

 
see:
mousePressed
mouseReleased
 
i can see the lines in your current version, just have to click and hold the mouse-button ...
/F
 
Pages: 1 

« Previous topic | Next topic »