Hi Angus

Usually it helps to start by getting something simple to work and then
little-by-little adding more.

E.g. Here's a working example with squares instead of bears, and limited to
just varying rotation ...


#lang racket

(require 2htdp/image)

(define blue-square (square 25 'solid 'blue))

(apply beside
       (for/list ([i 18])
         (rotate (* 20 i) blue-square)))



Dan

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to