Difference between revisions of "Recursive Circles Assignment"

From CSE425S Wiki
Jump to navigation Jump to search
 
(3 intermediate revisions by the same user not shown)
Line 11: Line 11:
  
 
=Shrinking Circles=
 
=Shrinking Circles=
{{RacketToImplement|outside_circles|outside-circles|recursive_circles}}
+
{{RacketToImplement|shrinking_to_the_right_circles|shrinking-to-the-right-circles|recursive_circles}}
  
 
  <nowiki>(outside-circles radius n)
 
  <nowiki>(outside-circles radius n)
Line 18: Line 18:
 
{| class="wikitable" style="text-align: center; "
 
{| class="wikitable" style="text-align: center; "
 
|[[File:Shrinking-to-the-right-circles_0.svg|200px]]
 
|[[File:Shrinking-to-the-right-circles_0.svg|200px]]
|[[File:Shrinking-to-the-right-circles_1.svg|200px]]
+
|[[File:Shrinking-to-the-right-circles_1.svg|300px]]
|[[File:Shrinking-to-the-right-circles_2.svg|200px]]
+
|[[File:Shrinking-to-the-right-circles_2.svg|350px]]
|[[File:Shrinking-to-the-right-circles_3.svg|200px]]
+
|[[File:Shrinking-to-the-right-circles_3.svg|375px]]
|[[File:Shrinking-to-the-right-circles_4.svg|200px]]
+
|[[File:Shrinking-to-the-right-circles_4.svg|387px]]
 
|-
 
|-
 
|n=0
 
|n=0
Line 31: Line 31:
  
 
=Outside Circles=
 
=Outside Circles=
{{RacketToImplement|cantor|cantor-stool|sierpinski_and_cantor}}
+
{{RacketToImplement|outside_circles|outside-circles|recursive_circles}}
  
==Stool==
+
  <nowiki>(outside-circles radius n)
  <nowiki>(define (cantor-stool width height n)
 
 
   (raise 'not-yet-implemented #t))</nowiki>
 
   (raise 'not-yet-implemented #t))</nowiki>
  
 
{| class="wikitable" style="text-align: center; "
 
{| class="wikitable" style="text-align: center; "
 
|[[File:Outside-circles_0.svg|200px]]
 
|[[File:Outside-circles_0.svg|200px]]
|[[File:Outside-circles_1.svg|200px]]
+
|[[File:Outside-circles_1.svg|300px]]
|[[File:Outside-circles_2.svg|200px]]
+
|[[File:Outside-circles_2.svg|400px]]
|[[File:Outside-circles_3.svg|200px]]
+
|[[File:Outside-circles_3.svg|500px]]
|[[File:Outside-circles_4.svg|200px]]
+
|[[File:Outside-circles_4.svg|600px]]
 
|-
 
|-
 
|n=0
 
|n=0

Latest revision as of 06:59, 21 March 2022

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 Racket-logo.svg
functions: shrinking-to-the-right-circles
(outside-circles radius n)
  (raise 'not-yet-implemented #t))
Shrinking-to-the-right-circles 0.svg Shrinking-to-the-right-circles 1.svg Shrinking-to-the-right-circles 2.svg Shrinking-to-the-right-circles 3.svg Shrinking-to-the-right-circles 4.svg
n=0 n=1 n=2 n=3 n=4

Outside Circles

file: src/main/racket/recursive_circles/outside_circles.rkt Racket-logo.svg
functions: outside-circles
(outside-circles radius n)
  (raise 'not-yet-implemented #t))
Outside-circles 0.svg Outside-circles 1.svg Outside-circles 2.svg Outside-circles 3.svg Outside-circles 4.svg
n=0 n=1 n=2 n=3 n=4