Sketches

what should be done when you cannot view any of your sketches... My processing is working properly but when I click the "run" but nothing happens ( besides the button turning green) so I'm not able to see the sketch of the code written... Any advice on the matter? Btw I'm using windows 10

Answers

  • Can you show us your code? You can paste the code here in the forum. Before submitting, select your code and hit ctrl+o and ensure there is an empty line above and below your code block.

    Or try something like:

    void setup(){
      size(400,600);
      noStroke();
    }
    
    void draw(){
      background(0);
      fill(random(255));
      ellipse(mouseX,mouseY,50,50);
    }
    

    Kf

  • Yaa I'll try the code that you've given me ...and my code I was using is very basic I'm still using how to learn processing .. I'm just making simple geometric shapes

Sign In or Register to comment.