sierpenski carpet example
This commit is contained in:
parent
8c3c61ecac
commit
158cc6ddf6
39
examples/sierpinski-carpet.rkt
Normal file
39
examples/sierpinski-carpet.rkt
Normal file
|
@ -0,0 +1,39 @@
|
|||
#lang planet dyoo/whalesong/base
|
||||
(require (planet dyoo/whalesong/image))
|
||||
;; Sierpenski carpet.
|
||||
;; http://rosettacode.org/wiki/Sierpinski_carpet#Scheme
|
||||
|
||||
(define SQUARE (square 5 "solid" "red"))
|
||||
(define SPACE (square 5 "solid" "white"))
|
||||
|
||||
(define (carpet n)
|
||||
(local [(define (in-carpet? x y)
|
||||
(cond ((or (zero? x) (zero? y))
|
||||
#t)
|
||||
((and (= 1 (remainder x 3)) (= 1 (remainder y 3)))
|
||||
#f)
|
||||
(else
|
||||
(in-carpet? (quotient x 3) (quotient y 3)))))]
|
||||
|
||||
(letrec ([outer (lambda (i)
|
||||
(cond
|
||||
[(< i (expt 3 n))
|
||||
(local ([define a-row
|
||||
(letrec ([inner
|
||||
(lambda (j)
|
||||
(cond [(< j (expt 3 n))
|
||||
(cons (if (in-carpet? i j)
|
||||
SQUARE
|
||||
SPACE)
|
||||
(inner (add1 j)))]
|
||||
[else
|
||||
empty]))])
|
||||
(inner 0))])
|
||||
(cons (apply beside a-row)
|
||||
(outer (add1 i))))]
|
||||
[else
|
||||
empty]))])
|
||||
(apply above (outer 0)))))
|
||||
|
||||
|
||||
(carpet 4)
|
Loading…
Reference in New Issue
Block a user