Recursive Circles Assignment
Jump to navigation
Jump to search
Contents
Motivation
We will recursively generate some images with the Racket Image Library.
Code To Investigate
Racket Image Library
placement
shapes
Shrinking Circles
file: | src/main/racket/recursive_circles/shrinking_to_the_right_circles.rkt | |
functions: | shrinking-to-the-right-circles |
(shrinking-to-the-right-circles radius n) (raise 'not-yet-implemented #t))
n=0 | n=1 | n=2 | n=3 | n=4 |
Outside Circles
file: | src/main/racket/recursive_circles/outside_circles.rkt | |
functions: | outside-circles |
(outside-circles radius n) (raise 'not-yet-implemented #t))
n=0 | n=1 | n=2 | n=3 | n=4 |