From 22d0522b8cea5679cb256f9d276d0f3d4c0352c7 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Wed, 20 Jul 2011 14:22:52 -0400 Subject: [PATCH] rain program running --- examples/rain-world-program.rkt | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/examples/rain-world-program.rkt b/examples/rain-world-program.rkt index 47ae470..d9ff4ae 100644 --- a/examples/rain-world-program.rkt +++ b/examples/rain-world-program.rkt @@ -4,8 +4,8 @@ ;; Rain falls down the screen. -(define WIDTH 200) -(define HEIGHT 500) +(define WIDTH 640) +(define HEIGHT 480) (define GRAVITY-FACTOR 1) (define BACKGROUND (empty-scene WIDTH HEIGHT)) @@ -23,12 +23,13 @@ ;; Generates a random particle. (define (random-drop) (make-drop (make-posn (random WIDTH) 0) - (+ 5 (random 10)) ;; Get it falling + (+ 5 (random 10)) ;; Get it falling at some random velocity (random-choice (list "gray" "darkgray" "white" "blue" "lightblue" "darkblue")) - (random 10))) + (random 10) ;; with some random size + )) ;; random-choice: (listof X) -> X ;; Picks a random element of elts. @@ -58,7 +59,9 @@ (define (tick w) (make-world (my-filter not-on-floor? - (map drop-descend (cons (random-drop) (world-sky w)))))) + (map drop-descend (cons (random-drop) + (cons (random-drop) + (world-sky w))))))) ;; drop-descend: drop -> drop