Advertisement
sakureis

purple maze

Apr 25th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.33 KB | None | 0 0
  1. // SETUP - Runs only Once
  2. void setup(){
  3.   size(800,600);
  4.   background(200); // 0-255
  5.   background(179,233,255); // RED line
  6.  
  7.  
  8. }
  9. // DRAW - A loop! Will run forever!
  10. void draw(){
  11.   //     ( x, y, w, h)
  12.   // ellipse( mouseX, mouseY, 13*10, 13*10);
  13.  
  14. }
  15.  
  16. void mouseDragged(){
  17.   fill(#EADFFF);
  18.   square( mouseX, mouseY, 49);
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement