Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. //Making A House Colin Lester
  2. rectMode(CORNERS);
  3. ellipseMode(CORNERS);
  4. size(200,200);
  5.  
  6. //Background
  7. fill(0,200,255);
  8. rect(0,0,200,100);
  9. fill(0,255,10);
  10. rect(0,100,200,200);
  11.  
  12. //Chimney
  13. fill(255,0,0);
  14. rect(70,50,90,80);
  15.  
  16. //Roof
  17. fill(255,0,255);
  18. triangle(50,90,100,50,150,90);
  19.  
  20. //House
  21. fill(255,0,255);
  22. rect(60,90,140,150);
  23.  
  24. //Door
  25. fill(255,255,255);
  26. rect(90,120,110,150);
  27.  
  28. //Door Knob
  29.  
  30.  
  31. //Front Step
  32. fill(255,255,255);
  33. rect(85,145,115,155);
  34.  
  35. //WalkWay
  36. fill(255,255,255);
  37. rect(90,155,110,200);
  38.  
  39. //Window 1
  40. fill(0,200,255);
  41. rect(70,100,85,115);
  42.  
  43. //Window 2
  44. fill(0,200,255);
  45. rect(115,100,130,115);
  46.  
  47. //Panels
  48. stroke(0);
  49. line(70,107,85,107);
  50. line(77,100,77,115);
  51.  
  52. //Panels 2
  53. stroke(0);
  54. line(115,115,130,115);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement