continuing to try making grem's clipart example work

This commit is contained in:
Danny Yoo 2012-03-06 10:51:10 -05:00
parent cb2ef22559
commit dd6135123c

View File

@ -116,6 +116,18 @@
;(define CDOG (overlay (clipart/url DOGURL) BG))
;D
(define colors (image->color-list DOG))
(displayln (length colors))
(andmap color? colors)
(define vec (list->vector colors))
(vector-length vec)
(let loop ([i 0])
(when (< i (vector-length vec))
(unless (color? (vector-ref vec i))
(error 'something-went-wrong))
(loop (add1 i))))
(define (repeat num thunk)
(if (equal? num 0)
(thunk)