LoginSignup
0
0

More than 3 years have passed since last update.

Processing - 15 - マウス座標と円の移動

Posted at

スクリーンショット 2020-05-08 12.13.22.png

void setup(){
  size(320,480);
  noStroke();
}

void draw(){
  background(124,235,235); 
  ellipse(50 ,mouseY-100,40,40);
  ellipse(100,mouseY-50 ,40,40);
  ellipse(150,mouseY    ,40,40);
  ellipse(200,mouseY+50 ,40,40);
  ellipse(250,mouseY+100,40,40);  
}

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0