Facebook
From Lousy Parrot, 1 Year ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 129
  1. void setup()
  2. {
  3.   size(800,600);  
  4. }
  5.  
  6. void draw()
  7. {
  8. //square(x,y,szer);
  9. //rect(x,y,szer,wys);
  10. //circle(x,y,srednica);
  11. //ellipse(x,y,szer,wys);
  12. //line(x1,y1,x2,y2);
  13. //triangle(x1,y1,x2,y2,x3,y3);
  14. //quad(x1,y1,x2,y2,x3,y3,x4,y4);
  15. //stroke(#FF0000);
  16. //strokeWeight(5);
  17. //fill(#1D1BDB);
  18. //square(100,100,200);
  19.  
  20. //textSize(20);
  21. //text("siema ziomek!",400,100);
  22. //rect(400,100,200,50);
  23. }
  24.  
  25. void mousePressed()
  26. {
  27.    println("x="+mouseX+",y="+mouseY);
  28. }