Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. void setup () {
  2. size( 600,600); // w,h My dogs name is Crusty
  3. background(124,14,155); // 0 is black vales 0 and 255 Col is RGB
  4.  
  5. }
  6.  
  7. void draw () {
  8. rect ( 100,200,200,200); // xpos, ypos, w,h,
  9. println(mouseX, mouseY);
  10. }
  11.  
  12. void keyPressed() {
  13. if ( key == 's') {
  14. saveFrame("mypic-####.jpg");
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement