Guest User

Untitled

a guest
Mar 22nd, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. drawCircle <- function(x, y, radius){
  2. ellipse(x, y, radius, radius)
  3. if(radius > 2){
  4. radius = radius * 0.75
  5. drawCircle(x, y, radius)
  6. }
  7. }
  8.  
  9. drawCircle(50, 50, 50)
Add Comment
Please, Sign In to add comment