Where is the display window?

Hi there, I'm a beginner, I just started learning Processing today, I installed Processing on my Windows 7 Computer , I only see one screen where I write the code, I can't see the other display window. I tried typing a simple code like this : ellipse(50, 50, 80, 80); and then I clicked run code, a very small screen opened but nothing happened on it , and I can't maximize the small screen? am I missing something?

Answers

  • Try running this:

    void setup(){
      size(400,400);
      fill(255,0,0);
      noStroke();
      smooth();
    }
    
    void draw(){
      background(0);
      ellipse(mouseX, mouseY, 20,20);
    }
    
  • Got it, Thanks. Now I can see the window

Sign In or Register to comment.