Loading...
Logo
Processing Forum
Don't know how else to put it. When I run this (errorless) code, sometimes there is a blank sketch window, next time perhaps a drawn line or two -- or even many, next time, a black sketch window, then back to white with or without lines.

The background is never redrawn. I don't know where to look for this kind of problem event.

I am happy with the code which I am just beginning to work with. I want to expand it, but I want to solve this problem first.

You can easily see it by repeatedly clicking run and stop, run and stop. Even if you happen to get a line or two the first time, keep on clicking stop and run.  (Oh, it never does start over either, although it does get into the last section, as you can see by the comment.) Thank you much!

Copy code
  1. float unkn = 0.09;
  2. int cpx1 = width/4;
  3. int cpy1 = height/4;
  4. int cpx2 = width/4;
  5. int cpy2 = height/4;
  6. int x = round(cpx1+=unkn);
  7. int y = cpy2+=random(10, 390);
  8. int k;
  9. int m;
  10. int x2, y2;
  11. int i = 0;

  12. void setup( )
  13. {
  14.   size(400, 600);
  15.   background(255);
  16.   smooth();
  17.   noFill();
  18.   stroke(0);
  19. }
  20. void draw( )
  21. {
  22. // for (int i = 0; i<=200; i++) { // went to while loop, but problem remains
  23.   while (i != 200) {
  24.     beginShape();
  25.     k = int(random(30, 80));
  26.     m = int(random(20, 120));
  27.     vertex(30, 70); // first point
  28.     bezierVertex(cpx1, cpy1, cpx2, cpy2, 50, 100);
  29.     x2 = cpx2;
  30.     y2 = cpy2;
  31.     bezierVertex(x2, y2, cpx2+=k, cpy2+=m, 100, 75);
  32.     x2 = cpx2;
  33.     y2 = cpy2;  
  34.     stroke(random(255), random(255), random(255));
  35.     endShape();
  36.     i++;
  37.     if (i == 200){ // makes no difference if this code is within Shape or here
  38.       i = 0;
  39.       x2 = cpx2;
  40.       y2 = cpy2;     
  41.       // - I had a println here and it ALWAYS printed
  42.     }
  43.   }
  44. }

Replies(9)

The while loop is an infinite loop because i never reaches 200.

The screen is only updated when the draw method exits !

Copy code
  1. float unkn = 0.09;
  2. int cpx1 = width/4;
  3. int cpy1 = height/4;
  4. int cpx2 = width/4;
  5. int cpy2 = height/4;
  6. int x = round(cpx1+=unkn);
  7. int y = cpy2+=random(10, 390);
  8. int k;
  9. int m;
  10. int x2, y2;
  11. int i = 0;

  12. void setup( )
  13. {
  14.   size(400, 600);
  15.   background(255);
  16.   smooth();
  17.   noFill();
  18.   stroke(0);
  19. }
  20. void draw( )
  21. {
  22.   background(255);
  23.   // for (int i = 0; i<=200; i++) {
  24.   while (i != 200) {
  25.     beginShape();
  26.     k = int(random(30, 80));
  27.     m = int(random(20, 120));
  28.     vertex(30, 70); // first point
  29.     bezierVertex(cpx1, cpy1, cpx2, cpy2, 50, 100);
  30.     x2 = cpx2;
  31.     y2 = cpy2;
  32.     bezierVertex(x2, y2, cpx2+=k, cpy2+=m, 100, 75);
  33.     x2 = cpx2;
  34.     y2 = cpy2;  
  35.     stroke(random(255), random(255), random(255));
  36.     endShape();
  37.     i++;
  38.   }
  39. }


quarks is right - I missed it in the copy, but it is there now in the original post.
QUARKS!!! It is in there -- and was -- BUT
I'm sorry -- I copied my code piece by piece to leave out large commented sections -- and missed this line.

The behavior is the same. Even with the i++ in there.

And, as I said, the behavior was also the same with the for loop.

I went back and fixed the code in my original post so no one will have to go through what you did.


Remember that canvas is only rendered after the end of each draw() .
It means we only see the final result. We don't see drawings happening at the same time commands are issued.

For example, if we change the background() color many times, we'll only be aware of its last 1:
Copy code
    void draw() {
      for (color i = 0; i != 600000000; background(i += 30000));
      background(0100); // we only see this last gray color here!
      text("Frame: " + frameCount, 20, 55);
    }
    
when you want a blank screen each time you need to put
Copy code
  1.  background(255);
at the start of draw()

(I can't see a black screen here when I press stop and start often in your code)
Chrisir and GoTo --
I don't want a blank canvas -- it's coming up unbidden -- background is ONLY set once in the setup. And it is set to white -- so this doesn't address the problem.

If you drop the code into a sketch you can see it happening -- just keep clicking on and off. Sometimes lines, sometimes, white with nothing, sometimes black with nothing.  And there is nothing in the code that I can see which makes this happen.

I just want to keep on drawing over what is there -- but I'm not going any further with the coding until I get this erratic behavior figured out.

Cheers!

I'm not sure the behaviour you want to get out of this so i can't say for sure. But usually the one thing that really plagues programmers is the off by one scenario. It's easier to get over this by simply ( and probably have to thank james gosling for this ) thinking of the .size() function that exists in most length based constructs. So the idiomatic test condition turns out to become ( i<b.size() )  for instance rather than b.size-1 or something like that. Keep at it and every length calculation will look like zero index based arrays. 

The other thing i like to do to see what the sketch is doing is to put it into 3D and rotate the camera around it or something, just in case the math is wrong and it's off doing something in the distance. And dropping objects into the sketch so that you can see where the camera is pointing at.

This is kind of what i mean....

float unkn = 0.09;
int cpx1 = width/4;
int cpy1 = height/4;
int cpx2 = width/4;
int cpy2 = height/4;
int x = round(cpx1+=unkn);
int y = cpy2+=random(10, 390);
int k; 
int m;
int x2, y2;
int i = 0;

void setup( )
{
  size(1400, 600,P3D);
  background(255);
  smooth();
  noFill();
  stroke(0);
}
float camera_angle;
float camera_x,camera_y,camera_z;
void rotateCam(){
  camera_angle+=2;
  camera_x=1000*cos(radians(camera_angle));
  camera_z=1000*sin(radians(camera_angle));
  camera_y=camera_x+camera_z;
}
void draw( ) 
{   
  camera(camera_x,camera_y,camera_z,0,0,0,0,1,0);
  rotateCam();
  sphere(200);
// for (int i = 0; i<=200; i++) { // went to while loop, but problem remains
  //while (i <= 200) {
   for(int i=0;i<200;i++){
    beginShape();
    k = int(random(30, 8000));
    m = int(random(20, 1200));
    vertex(30, 70); // first point
    bezierVertex(cpx1, cpy1, cpx2, cpy2, 50, 100);
    x2 = cpx2;
    y2 = cpy2;
    bezierVertex(x2, y2, cpx2+=k, cpy2+=m, 1000, 75);
    x2 = cpx2;
    y2 = cpy2;   
    vertex(900,200,900);
    stroke(random(255), random(255), random(255));
    endShape();
    i++;
    if(i==200){
     x2=cpx2;y2=cpy2;
    }
  }

Jeff --
I have almost a full day of work (the money-earning kind) ahead of me, but I've taken a quick look at this and am fascinated and stunned -- I see you've only added two lines of code in my draw section that don't have to do with a camera , and changed one of the 100s in my calls to bezierVertex to 1000-- and it's beautiful -- but I took these out and and am even more stunned by what happens about 3-4 minutes into it (below).

However, I have major questions about the camera and I want so much to learn --

I will come back after I have read about the camera and whatever else is in there that I don't understand at this point.
I hope that is all right to do, after you have already done so much for me.

BUT, I am intensely grateful to you for this. I am a practiced artist, but only a junior programmer!

Clair

Oh hey no problem there. It's some trig to find the x,z,y camera position. Just something everyone gets into after a while.

If you're into stochastic processes, you might be interested in http://www.joshuadavis.com/. I had the fortune of seeing him in person back when processing was proce55ing, so he was still doing flash based artwork. But he seems to be doing more processing these days. He had this advice for everyone: Don't be frightened by the math to do any of the stuff. Just try it till it works.