Advertisement
Nojus_Globys

lithuania

Mar 17th, 2023
521
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.40 KB | None | 0 0
  1.  
  2. int
  3.     h = 100,
  4.     w = 500;
  5.  
  6. void setup () {
  7.     size (1200, 800);
  8.     noStroke ();
  9.     //rectMode (CENTER);
  10.     h = int(height * 0.1);
  11.     w = int(height * 0.5);
  12. }
  13.  
  14. void draw () {
  15.     background (255);
  16.     fill (240, 190, 70);
  17.     rect (mouseX, mouseY - h, w, h);
  18.     fill (40, 100, 70);
  19.     rect (mouseX, mouseY, w, h);
  20.     fill (180, 50, 50);
  21.     rect (mouseX, mouseY + h, w, h);
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement