Advertisement
sakureis

tosa

Apr 25th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. // SETUP - Runs only Once
  2. void setup(){
  3.   size(800,800);
  4.   background(200); // 0-255
  5.   background(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.   keu
  14. }
  15.  
  16. void mouseDragged(){
  17.   stroke(#FAF4A1);
  18.   fill(#DEAF50);
  19.   ellipse(mouseX, mouseY, 16, 16);
  20.   ellipse(mouseX, mouseY, 16, 16);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement