Advertisement
andreahmed

Untitled

Jun 28th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. PImage img;
  2. float r = 15;
  3.  
  4. void setup()
  5. {
  6. img = loadImage("Rocket.png");
  7. size(640,480);
  8. }
  9.  
  10. void draw()
  11. {
  12.  
  13. image(img,240,120,2*r,3*r);
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement