rellapdrella

coso di alecs (cdp) completo

May 27th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. void setup() {
  2. size(400,400);
  3. }
  4. void draw() {
  5. background(255);
  6. stroke(0);
  7. line(width/2,0,width/2,height);
  8. line(0,height/2,width,height/2);
  9.  
  10. // Fill a black color
  11. noStroke();
  12. fill(0);
  13. if (mouseX < width/2 && mouseY < height/2) {
  14. rect(0,0,width/2, height/2);
  15. } else if (mouseX > width/2 && mouseY < height/2) {
  16. rect(width/2,0,width,height/2);
  17.  
  18. } else if (mouseX < width/2 && mouseY > height/2) {
  19. rect(0,height/2,width/2,height);
  20. } else if (mouseX > width/2 && mouseY > height/2) {
  21. rect(width/2,height/2,width,height);
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment