Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.75 KB | None | 0 0
  1. //size(800, 600);
  2. ///////////////////////////////////////////////////////////
  3. //circle over square
  4. //rect(10,10,50,50); //makes square
  5. //ellipse(35,35,50,50); //makes circle
  6. ///////////////////////////////////////////////////////////
  7. //square over circle
  8. //ellipse(105,35,50,50); //makes circle
  9. //rect(80,10,50,50); //makes square
  10. ///////////////////////////////////////////////////////////
  11. //box with 4 quadrants in it, 2 being white, 1 blue, 1 red
  12. //stroke changes
  13. //size(200,200);
  14. //background(255);
  15. //noStroke();
  16. //stroke(10);
  17. //fill(255,0,0);
  18. //rect(0,0,100,100);
  19. //fill(0,0,255);
  20. //rect(100,100,100,100);
  21. ///////////////////////////////////////////////////////////
  22. size(500,500);
  23. smooth();
  24. ellipse(250,250,500,500);
  25.  
  26. println("Hello");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement