Advertisement
Nikki12345671

Untitled

Aug 23rd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. /*Nikki Forehand
  2. 4th Period
  3. Hello Processing
  4. */
  5.  
  6. void setup (){
  7. size(640,420);
  8. background (235, 65, 70);
  9. rect(320,210,320,210);
  10. ellipse(20,40,60,70);
  11. }
  12. void draw() {
  13. stroke(255);
  14. fill(0);
  15. ellipse(100, 100, 100, 100);
  16. ellipse (mouseX,mouseY, 50,100);
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement