added above and above/places
svn: r16730
|
@ -56,8 +56,8 @@ and they all have good sample contracts. (It is amazing what we can do with kids
|
|||
beside
|
||||
beside/places
|
||||
|
||||
;above
|
||||
;above/places
|
||||
above
|
||||
above/places
|
||||
|
||||
rotate
|
||||
frame
|
||||
|
|
|
@ -386,8 +386,33 @@
|
|||
(cdr rst)))])))
|
||||
|
||||
;; above : image image image ... -> image
|
||||
;; above/places : string I I I ... -> I
|
||||
;; like beside, but vertically
|
||||
;; places images in a single vertical row, left aligned
|
||||
(define/chk (above image1 image2 . image3)
|
||||
(above/internal 'left image1 (cons image2 image3)))
|
||||
|
||||
;; beside/places : string image image image ... -> image
|
||||
;; places images in a horizontal row where the vertical alignment is
|
||||
;; covered by the string argument
|
||||
(define/chk (above/places x-place image1 image2 . image3)
|
||||
(above/internal x-place image1 (cons image2 image3)))
|
||||
|
||||
(define (above/internal x-place fst rst)
|
||||
(let loop ([fst fst]
|
||||
[rst rst])
|
||||
(cond
|
||||
[(null? rst) fst]
|
||||
[else
|
||||
(let* ([snd (car rst)]
|
||||
[fst-x-spot (find-x-spot x-place fst)]
|
||||
[snd-x-spot (find-x-spot x-place (car rst))]
|
||||
[dx (- fst-x-spot snd-x-spot)])
|
||||
(loop (overlay/δ fst
|
||||
(if (< dx 0) (- dx) 0)
|
||||
0
|
||||
(car rst)
|
||||
(if (< dx 0) 0 dx)
|
||||
(image-bottom fst))
|
||||
(cdr rst)))])))
|
||||
|
||||
|
||||
;
|
||||
|
@ -842,9 +867,10 @@
|
|||
(provide overlay
|
||||
overlay/places
|
||||
overlay/xy
|
||||
|
||||
beside
|
||||
beside/places
|
||||
above
|
||||
above/places
|
||||
|
||||
rotate
|
||||
|
||||
|
|
|
@ -28,21 +28,47 @@
|
|||
(ellipse 20 30 "solid" "slateblue")
|
||||
(ellipse 20 10 "solid" "navy"))
|
||||
'image
|
||||
"33aaed94.png")
|
||||
(list '(frame (ellipse 20 20 "outline" "black")) 'image "b3e371c.png")
|
||||
(list '(ellipse 60 60 "solid" "blue") 'image "80c7ec4.png")
|
||||
(list '(scale/xy 3 2 (ellipse 20 30 "solid" "blue")) 'image "1bebb5af.png")
|
||||
(list '(ellipse 40 60 "solid" "blue") 'image "3f9b7651.png")
|
||||
(list '(scale 2 (ellipse 20 30 "solid" "blue")) 'image "1a14c856.png")
|
||||
(list '(rotate 5 (rectangle 50 50 "outline" "black")) 'image "24e78945.png")
|
||||
"101f7aee.png")
|
||||
(list '(frame (ellipse 20 20 "outline" "black")) 'image "fe8415.png")
|
||||
(list '(ellipse 60 60 "solid" "blue") 'image "21849ba8.png")
|
||||
(list '(scale/xy 3 2 (ellipse 20 30 "solid" "blue")) 'image "209d169e.png")
|
||||
(list '(ellipse 40 60 "solid" "blue") 'image "3a36050a.png")
|
||||
(list '(scale 2 (ellipse 20 30 "solid" "blue")) 'image "24575fbb.png")
|
||||
(list '(rotate 5 (rectangle 50 50 "outline" "black")) 'image "15a961ce.png")
|
||||
(list
|
||||
'(rotate 45 (ellipse 60 20 "solid" "olivedrab"))
|
||||
'image
|
||||
"36abd0a6.png")
|
||||
"3d04f6fd.png")
|
||||
(list
|
||||
'(above/places
|
||||
"center"
|
||||
(ellipse 70 20 "solid" "yellowgreen")
|
||||
(ellipse 50 20 "solid" "olivedrab")
|
||||
(ellipse 30 20 "solid" "darkolivegreen")
|
||||
(ellipse 10 20 "solid" "darkgreen"))
|
||||
'image
|
||||
"36ef7bca.png")
|
||||
(list
|
||||
'(above/places
|
||||
"right"
|
||||
(ellipse 70 20 "solid" "gold")
|
||||
(ellipse 50 20 "solid" "goldenrod")
|
||||
(ellipse 30 20 "solid" "darkgoldenrod")
|
||||
(ellipse 10 20 "solid" "sienna"))
|
||||
'image
|
||||
"23f846d.png")
|
||||
(list
|
||||
'(above
|
||||
(ellipse 70 20 "solid" "gray")
|
||||
(ellipse 50 20 "solid" "darkgray")
|
||||
(ellipse 30 20 "solid" "dimgray")
|
||||
(ellipse 10 20 "solid" "black"))
|
||||
'image
|
||||
"2d2a2d07.png")
|
||||
(list
|
||||
'(beside/places "baseline" (text "ijy" 18 "black") (text "ijy" 24 "black"))
|
||||
'image
|
||||
"128db302.png")
|
||||
"3e8ce4fa.png")
|
||||
(list
|
||||
'(beside/places
|
||||
"center"
|
||||
|
@ -51,7 +77,7 @@
|
|||
(ellipse 20 30 "solid" "purple")
|
||||
(ellipse 20 10 "solid" "indigo"))
|
||||
'image
|
||||
"120469a1.png")
|
||||
"2f5a1e0f.png")
|
||||
(list
|
||||
'(beside/places
|
||||
"bottom"
|
||||
|
@ -60,7 +86,7 @@
|
|||
(ellipse 20 30 "solid" "slateblue")
|
||||
(ellipse 20 10 "solid" "navy"))
|
||||
'image
|
||||
"1cdad38e.png")
|
||||
"22d7c488.png")
|
||||
(list
|
||||
'(beside
|
||||
(ellipse 20 70 "solid" "gray")
|
||||
|
@ -68,7 +94,7 @@
|
|||
(ellipse 20 30 "solid" "dimgray")
|
||||
(ellipse 20 10 "solid" "black"))
|
||||
'image
|
||||
"5965553.png")
|
||||
"2821cf32.png")
|
||||
(list
|
||||
'(overlay/xy
|
||||
(rectangle 10 10 "solid" "red")
|
||||
|
@ -76,7 +102,7 @@
|
|||
-10
|
||||
(rectangle 10 10 "solid" "black"))
|
||||
'image
|
||||
"2e92034e.png")
|
||||
"19758cc2.png")
|
||||
(list
|
||||
'(overlay/xy
|
||||
(rectangle 10 10 "solid" "red")
|
||||
|
@ -84,7 +110,7 @@
|
|||
10
|
||||
(rectangle 10 10 "solid" "black"))
|
||||
'image
|
||||
"107a175b.png")
|
||||
"234ab918.png")
|
||||
(list
|
||||
'(overlay/xy
|
||||
(rectangle 10 10 "outline" "red")
|
||||
|
@ -92,7 +118,7 @@
|
|||
0
|
||||
(rectangle 10 10 "outline" "black"))
|
||||
'image
|
||||
"f404e3c.png")
|
||||
"153ef52.png")
|
||||
(list
|
||||
'(overlay/xy
|
||||
(ellipse 40 40 "outline" "black")
|
||||
|
@ -100,7 +126,7 @@
|
|||
25
|
||||
(ellipse 10 10 "solid" "forestgreen"))
|
||||
'image
|
||||
"28fdf75c.png")
|
||||
"171dc432.png")
|
||||
(list
|
||||
'(overlay/places
|
||||
"right"
|
||||
|
@ -110,7 +136,7 @@
|
|||
(rectangle 40 40 "solid" "red")
|
||||
(rectangle 50 50 "solid" "black"))
|
||||
'image
|
||||
"1331b42e.png")
|
||||
"2a64c8fc.png")
|
||||
(list
|
||||
'(overlay/places
|
||||
"middle"
|
||||
|
@ -118,7 +144,7 @@
|
|||
(rectangle 30 60 "solid" "orange")
|
||||
(ellipse 60 30 "solid" "purple"))
|
||||
'image
|
||||
"10078cfc.png")
|
||||
"31d2c2a.png")
|
||||
(list
|
||||
'(overlay
|
||||
(ellipse 10 10 "solid" "red")
|
||||
|
@ -128,27 +154,27 @@
|
|||
(ellipse 50 50 "solid" "red")
|
||||
(ellipse 60 60 "solid" "black"))
|
||||
'image
|
||||
"975b778.png")
|
||||
"9369ffc.png")
|
||||
(list
|
||||
'(overlay
|
||||
(ellipse 60 30 "solid" "purple")
|
||||
(rectangle 30 60 "solid" "orange"))
|
||||
'image
|
||||
"cd2e82.png")
|
||||
"2854877a.png")
|
||||
(list
|
||||
'(text/font "not really a link" 18 "blue" #f 'roman 'normal 'normal #t)
|
||||
'image
|
||||
"11536865.png")
|
||||
"33752adc.png")
|
||||
(list
|
||||
'(text/font "Goodbye" 18 "indigo" #f 'modern 'italic 'normal #f)
|
||||
'image
|
||||
"2c27a4ab.png")
|
||||
"4abf45f.png")
|
||||
(list
|
||||
'(text/font "Hello" 24 "olive" "Gill Sans" 'swiss 'normal 'bold #f)
|
||||
'image
|
||||
"3a5f8054.png")
|
||||
(list '(text "Goodbye" 36 "indigo") 'image "f6b7cc9.png")
|
||||
(list '(text "Hello" 24 "olive") 'image "116768e2.png")
|
||||
"6d66aef.png")
|
||||
(list '(text "Goodbye" 36 "indigo") 'image "3f338d3a.png")
|
||||
(list '(text "Hello" 24 "olive") 'image "382436e0.png")
|
||||
(list
|
||||
'(add-line
|
||||
(ellipse 80 60 "outline" "darkolivegreen")
|
||||
|
@ -158,45 +184,45 @@
|
|||
(+ 30 (* 30 (sin (* pi 5/4))))
|
||||
"darkolivegreen")
|
||||
'image
|
||||
"3c068285.png")
|
||||
"39450ab.png")
|
||||
(list
|
||||
'(add-line (ellipse 40 40 "outline" "maroon") 0 40 40 0 "maroon")
|
||||
'image
|
||||
"370a84fa.png")
|
||||
(list '(line 30 -20 "red") 'image "35ca3e57.png")
|
||||
(list '(line -30 20 "red") 'image "149f7bed.png")
|
||||
(list '(line 30 30 "black") 'image "216299fe.png")
|
||||
"30639356.png")
|
||||
(list '(line 30 -20 "red") 'image "260e5662.png")
|
||||
(list '(line -30 20 "red") 'image "316a330b.png")
|
||||
(list '(line 30 30 "black") 'image "6ad4614.png")
|
||||
(list
|
||||
'(star-polygon 20 10 3 "solid" "cornflowerblue")
|
||||
'image
|
||||
"1564e03e.png")
|
||||
(list '(star-polygon 40 7 3 "outline" "darkred") 'image "33ded4e2.png")
|
||||
(list '(star-polygon 40 5 2 "solid" "seagreen") 'image "35eefac.png")
|
||||
(list '(star 40 "solid" "gray") 'image "194b0e44.png")
|
||||
(list '(regular-polygon 20 8 "solid" "red") 'image "1343ddbd.png")
|
||||
(list '(regular-polygon 40 4 "outline" "blue") 'image "36dc3be7.png")
|
||||
(list '(regular-polygon 50 3 "outline" "red") 'image "110659e0.png")
|
||||
(list '(rhombus 80 150 "solid" "mediumpurple") 'image "1817baf0.png")
|
||||
(list '(rhombus 40 45 "solid" "magenta") 'image "eab359b.png")
|
||||
(list '(rectangle 20 40 "solid" "blue") 'image "3f241026.png")
|
||||
(list '(rectangle 40 20 "outline" "black") 'image "2c0ddeae.png")
|
||||
(list '(square 50 "outline" "darkmagenta") 'image "97be4d.png")
|
||||
(list '(square 40 "solid" "slateblue") 'image "5da309d.png")
|
||||
"38814728.png")
|
||||
(list '(star-polygon 40 7 3 "outline" "darkred") 'image "2f234f2e.png")
|
||||
(list '(star-polygon 40 5 2 "solid" "seagreen") 'image "1176673d.png")
|
||||
(list '(star 40 "solid" "gray") 'image "350feeaa.png")
|
||||
(list '(regular-polygon 20 8 "solid" "red") 'image "ff15c8e.png")
|
||||
(list '(regular-polygon 40 4 "outline" "blue") 'image "d27a587.png")
|
||||
(list '(regular-polygon 50 3 "outline" "red") 'image "5dc8ec6.png")
|
||||
(list '(rhombus 80 150 "solid" "mediumpurple") 'image "69207aa.png")
|
||||
(list '(rhombus 40 45 "solid" "magenta") 'image "8a14504.png")
|
||||
(list '(rectangle 20 40 "solid" "blue") 'image "1e727939.png")
|
||||
(list '(rectangle 40 20 "outline" "black") 'image "30572a1c.png")
|
||||
(list '(square 50 "outline" "darkmagenta") 'image "2cad7a84.png")
|
||||
(list '(square 40 "solid" "slateblue") 'image "2ee6db0a.png")
|
||||
(list
|
||||
'(isosceles-triangle 60 330 "solid" "lightseagreen")
|
||||
'image
|
||||
"2fa1cd58.png")
|
||||
"175cca09.png")
|
||||
(list
|
||||
'(isosceles-triangle 60 30 "solid" "aquamarine")
|
||||
'image
|
||||
"1ea53369.png")
|
||||
"3f15cd12.png")
|
||||
(list
|
||||
'(isosceles-triangle 200 170 "solid" "seagreen")
|
||||
'image
|
||||
"1a19d76d.png")
|
||||
(list '(right-triangle 36 48 "solid" "black") 'image "17923882.png")
|
||||
(list '(triangle 40 "solid" "tan") 'image "264fff73.png")
|
||||
(list '(ellipse 20 40 "solid" "blue") 'image "33bc4cc8.png")
|
||||
(list '(ellipse 40 20 "outline" "black") 'image "3603dbc6.png")
|
||||
(list '(circle 20 "solid" "blue") 'image "90999b2.png")
|
||||
(list '(circle 30 "outline" "red") 'image "115c97e6.png")))
|
||||
"117fbb0d.png")
|
||||
(list '(right-triangle 36 48 "solid" "black") 'image "28384a91.png")
|
||||
(list '(triangle 40 "solid" "tan") 'image "3fb58822.png")
|
||||
(list '(ellipse 20 40 "solid" "blue") 'image "4bfb85c.png")
|
||||
(list '(ellipse 40 20 "outline" "black") 'image "118c2c14.png")
|
||||
(list '(circle 20 "solid" "blue") 'image "2496a152.png")
|
||||
(list '(circle 30 "outline" "red") 'image "3f0d4b2.png")))
|
||||
|
|
|
@ -319,6 +319,40 @@ other. The top and bottom pair of angles is @scheme[angle] and the left and righ
|
|||
|
||||
}
|
||||
|
||||
|
||||
@defproc[(above [i1 image?] [i2 image?] [is image?] ...) image?]{
|
||||
Constructs an image by placing all of the argument images in a
|
||||
vertical row, aligned along their left edges.
|
||||
|
||||
@image-examples[(above (ellipse 70 20 "solid" "gray")
|
||||
(ellipse 50 20 "solid" "darkgray")
|
||||
(ellipse 30 20 "solid" "dimgray")
|
||||
(ellipse 10 20 "solid" "black"))]
|
||||
|
||||
|
||||
}
|
||||
|
||||
@defproc[(above/places [y-place y-place?] [i1 image?] [i2 image?] [is image?] ...) image?]{
|
||||
Constructs an image by placing all of the argument images in a vertical row, lined
|
||||
up as indicated by the @scheme[x-place] argument. For example, if @scheme[x-place]
|
||||
is @scheme["middle"], then the images are placed above each other with their centers
|
||||
lined up.
|
||||
|
||||
@image-examples[(above/places "right"
|
||||
(ellipse 70 20 "solid" "gold")
|
||||
(ellipse 50 20 "solid" "goldenrod")
|
||||
(ellipse 30 20 "solid" "darkgoldenrod")
|
||||
(ellipse 10 20 "solid" "sienna"))
|
||||
|
||||
(above/places "center"
|
||||
(ellipse 70 20 "solid" "yellowgreen")
|
||||
(ellipse 50 20 "solid" "olivedrab")
|
||||
(ellipse 30 20 "solid" "darkolivegreen")
|
||||
(ellipse 10 20 "solid" "darkgreen"))]
|
||||
|
||||
|
||||
}
|
||||
|
||||
@section{Rotating, Scaling, and Framing Images}
|
||||
|
||||
@defproc[(rotate [angle angle?] [image image?]) image?]{
|
||||
|
|
Before Width: | Height: | Size: 908 B |
BIN
collects/teachpack/2htdp/scribblings/img/101f7aee.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 161 B |
Before Width: | Height: | Size: 952 B |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.3 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/1176673d.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/117fbb0d.png
Normal file
After Width: | Height: | Size: 685 B |
BIN
collects/teachpack/2htdp/scribblings/img/118c2c14.png
Normal file
After Width: | Height: | Size: 796 B |
Before Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 291 B |
Before Width: | Height: | Size: 467 B |
Before Width: | Height: | Size: 204 B |
BIN
collects/teachpack/2htdp/scribblings/img/153ef52.png
Normal file
After Width: | Height: | Size: 121 B |
Before Width: | Height: | Size: 1.3 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/15a961ce.png
Normal file
After Width: | Height: | Size: 678 B |
BIN
collects/teachpack/2htdp/scribblings/img/171dc432.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/175cca09.png
Normal file
After Width: | Height: | Size: 674 B |
Before Width: | Height: | Size: 668 B |
Before Width: | Height: | Size: 797 B |
Before Width: | Height: | Size: 1.2 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/19758cc2.png
Normal file
After Width: | Height: | Size: 142 B |
Before Width: | Height: | Size: 841 B |
Before Width: | Height: | Size: 1015 B |
Before Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 2.2 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/1e727939.png
Normal file
After Width: | Height: | Size: 122 B |
Before Width: | Height: | Size: 617 B |
BIN
collects/teachpack/2htdp/scribblings/img/209d169e.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 207 B |
BIN
collects/teachpack/2htdp/scribblings/img/21849ba8.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/22d7c488.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/234ab918.png
Normal file
After Width: | Height: | Size: 144 B |
BIN
collects/teachpack/2htdp/scribblings/img/23f846d.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/24575fbb.png
Normal file
After Width: | Height: | Size: 865 B |
BIN
collects/teachpack/2htdp/scribblings/img/2496a152.png
Normal file
After Width: | Height: | Size: 661 B |
Before Width: | Height: | Size: 851 B |
BIN
collects/teachpack/2htdp/scribblings/img/260e5662.png
Normal file
After Width: | Height: | Size: 244 B |
Before Width: | Height: | Size: 568 B |
BIN
collects/teachpack/2htdp/scribblings/img/2821cf32.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/28384a91.png
Normal file
After Width: | Height: | Size: 656 B |
BIN
collects/teachpack/2htdp/scribblings/img/2854877a.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/2a64c8fc.png
Normal file
After Width: | Height: | Size: 282 B |
Before Width: | Height: | Size: 116 B |
Before Width: | Height: | Size: 2.4 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/2cad7a84.png
Normal file
After Width: | Height: | Size: 173 B |
BIN
collects/teachpack/2htdp/scribblings/img/2d2a2d07.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 159 B |
BIN
collects/teachpack/2htdp/scribblings/img/2ee6db0a.png
Normal file
After Width: | Height: | Size: 153 B |
BIN
collects/teachpack/2htdp/scribblings/img/2f234f2e.png
Normal file
After Width: | Height: | Size: 4.1 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/2f5a1e0f.png
Normal file
After Width: | Height: | Size: 2.3 KiB |
Before Width: | Height: | Size: 582 B |
BIN
collects/teachpack/2htdp/scribblings/img/30572a1c.png
Normal file
After Width: | Height: | Size: 113 B |
BIN
collects/teachpack/2htdp/scribblings/img/30639356.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/316a330b.png
Normal file
After Width: | Height: | Size: 244 B |
BIN
collects/teachpack/2htdp/scribblings/img/31d2c2a.png
Normal file
After Width: | Height: | Size: 893 B |
BIN
collects/teachpack/2htdp/scribblings/img/33752adc.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 518 B |
Before Width: | Height: | Size: 3.7 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/350feeaa.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 204 B |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 777 B |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 130 B |
BIN
collects/teachpack/2htdp/scribblings/img/36ef7bca.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/382436e0.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/38814728.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/39450ab.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/3a36050a.png
Normal file
After Width: | Height: | Size: 865 B |
Before Width: | Height: | Size: 139 B |
Before Width: | Height: | Size: 2.7 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/3d04f6fd.png
Normal file
After Width: | Height: | Size: 1000 B |
BIN
collects/teachpack/2htdp/scribblings/img/3e8ce4fa.png
Normal file
After Width: | Height: | Size: 1005 B |
BIN
collects/teachpack/2htdp/scribblings/img/3f0d4b2.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/3f15cd12.png
Normal file
After Width: | Height: | Size: 659 B |
Before Width: | Height: | Size: 131 B |
BIN
collects/teachpack/2htdp/scribblings/img/3f338d3a.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 841 B |
BIN
collects/teachpack/2htdp/scribblings/img/3fb58822.png
Normal file
After Width: | Height: | Size: 574 B |
BIN
collects/teachpack/2htdp/scribblings/img/4abf45f.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/4bfb85c.png
Normal file
After Width: | Height: | Size: 542 B |
Before Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 159 B |
BIN
collects/teachpack/2htdp/scribblings/img/5dc8ec6.png
Normal file
After Width: | Height: | Size: 963 B |
BIN
collects/teachpack/2htdp/scribblings/img/69207aa.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/6ad4614.png
Normal file
After Width: | Height: | Size: 243 B |
BIN
collects/teachpack/2htdp/scribblings/img/6d66aef.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 1.0 KiB |
BIN
collects/teachpack/2htdp/scribblings/img/8a14504.png
Normal file
After Width: | Height: | Size: 744 B |
Before Width: | Height: | Size: 653 B |