Cantor Assignment

From CSE425S Wiki
Revision as of 18:14, 1 February 2023 by Dennis.cosgrove (talk | contribs) (Created page with "==Stool== <nowiki>(define (cantor-stool width height n) (raise 'not-yet-implemented #t))</nowiki> {| class="wikitable" style="text-align: center; " |File:Cantor-stool_0....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Stool

(define (cantor-stool width height n)
  (raise 'not-yet-implemented #t))
Cantor-stool 0.svg Cantor-stool 1.svg Cantor-stool 2.svg Cantor-stool 3.svg Cantor-stool 4.svg
n=0 n=1 n=2 n=3 n=4


Note: you have been provided with a function which draws a red rectangle outlined in blue.

(define (brick w h)
 (overlay
  (rectangle w h "outline" "blue")
  (rectangle w h "solid" "red")
  )
 )