Difference between revisions of "Sierpinski Assignment"
Jump to navigation
Jump to search
Line 44: | Line 44: | ||
|n=4 | |n=4 | ||
|} | |} | ||
+ | |||
+ | Note: this has a remarkably clean solution. | ||
==Carpet== | ==Carpet== |
Revision as of 10:39, 16 March 2020
Contents
Motivation
We will recursively generate some images with the Racket Image Library.
Code To Investigate
placement
shapes
Spacer
; fully transparent rectangle (define (spacer-rect w h) (rectangle w h "outline" (color 0 0 0 0))) ; fully transparent image the size of img (define (spacer-image img) (spacer-rect (image-width img) (image-height img)))
Sierpiński
file: | src/main/racket/sierpinski_and_cantor/sierpinski.rkt | ![]() |
functions: | sierpinski-triangle sierpinski-carpet |
Triangle
(define (sierpinski-triangle side-length n) (raise 'not-yet-implemented #t))
![]() |
![]() |
![]() |
![]() |
![]() |
n=0 | n=1 | n=2 | n=3 | n=4 |
Note: this has a remarkably clean solution.
Carpet
(define (sierpinski-carpet side-length n) (raise 'not-yet-implemented #t))
![]() |
![]() |
![]() |
![]() |
![]() |
n=0 | n=1 | n=2 | n=3 | n=4 |
Cantor
file: | src/main/racket/sierpinski_and_cantor/cantor.rkt | ![]() |
functions: | cantor-stool |
Stool
(define (cantor-stool width height n) (raise 'not-yet-implemented #t))
![]() |
![]() |
![]() |
![]() |
![]() |
n=0 | n=1 | n=2 | n=3 | n=4 |