Beginner to Processing, Trying to Get Started

edited July 2017 in Using Processing

answered

Answers

  • Answer ✓

    It will be great if you can provide a link to the video. What OS are you using?

    You can always try running of of the provided examples available in the Processing IDE. Or try this next:

    void setup(){ 
      size(640,360); 
      background(0);
      stroke(255);
      strokeWeight(3);
    }
    void draw(){
      line(pmouseX,pmouseY,mouseX,mouseY); 
    }
    

    Kf

Sign In or Register to comment.