diff --git a/collects/2htdp/image.ss b/collects/2htdp/image.ss index 6fcdd1c1dd..fb81e88b3a 100644 --- a/collects/2htdp/image.ss +++ b/collects/2htdp/image.ss @@ -101,11 +101,14 @@ and they all have good sample contracts. (It is amazing what we can do with kids angle? side-count? image-color? + pen-style? + pen-cap? + pen-join? (rename-out [build-color make-color]) color-red color-blue color-green color? color (rename-out [build-pen make-pen]) - pen-color pen-width pen-style pen-cap pen-join + pen-color pen-width pen-style pen-cap pen-join pen image-width image-height diff --git a/collects/2htdp/private/image-more.ss b/collects/2htdp/private/image-more.ss index 4ce7b08f4b..4af533fb28 100644 --- a/collects/2htdp/private/image-more.ss +++ b/collects/2htdp/private/image-more.ss @@ -59,12 +59,12 @@ (define (save-image pre-image filename) (let* ([image (to-img pre-image)] [bm (make-object bitmap% - (inexact->exact (ceiling (+ 2 (get-right image)))) - (inexact->exact (ceiling (+ 2 (get-bottom image)))))] + (inexact->exact (ceiling (+ 1 (get-right image)))) + (inexact->exact (ceiling (+ 1 (get-bottom image)))))] [bdc (make-object bitmap-dc% bm)]) (send bdc set-smoothing 'aligned) (send bdc clear) - (render-image image bdc 1 1) + (render-image image bdc 0 0) (send bdc set-bitmap #f) (send bm save-file filename 'png))) diff --git a/collects/2htdp/private/img-err.ss b/collects/2htdp/private/img-err.ss index 2903a3bf4e..2b072c8ac7 100644 --- a/collects/2htdp/private/img-err.ss +++ b/collects/2htdp/private/img-err.ss @@ -8,6 +8,9 @@ angle? side-count? image-color? + pen-style? + pen-cap? + pen-join? image-snip->image bitmap->image check-mode/color-combination) diff --git a/collects/mrlib/image-core.ss b/collects/mrlib/image-core.ss index 29e02a9ae0..ceee10e07c 100644 --- a/collects/mrlib/image-core.ss +++ b/collects/mrlib/image-core.ss @@ -908,7 +908,7 @@ the mask bitmap and the original bitmap are all together in a single bytes! curve-segment-start curve-segment-s-angle curve-segment-s-pull curve-segment-end curve-segment-e-angle curve-segment-e-pull curve-segment-color - make-pen pen? pen-color pen-width pen-style pen-cap pen-join + make-pen pen? pen-color pen-width pen-style pen-cap pen-join pen make-bitmap bitmap? bitmap-raw-bitmap bitmap-raw-mask bitmap-angle bitmap-x-scale bitmap-y-scale bitmap-rendered-bitmap bitmap-rendered-mask diff --git a/collects/teachpack/2htdp/scribblings/image.scrbl b/collects/teachpack/2htdp/scribblings/image.scrbl index 53026fa901..ac1899b94f 100644 --- a/collects/teachpack/2htdp/scribblings/image.scrbl +++ b/collects/teachpack/2htdp/scribblings/image.scrbl @@ -8,10 +8,18 @@ lang/posn "shared.ss" "image-util.ss" + scribble/decode scribble/manual) @teachpack["image"]{Images} +@(define mode/color-text + (make-splice + @list{If the @scheme[mode] is @scheme['outline] or @scheme["outline"], then the last + argument can be a @scheme[pen] struct or an @scheme[image-color?], but if the @scheme[mode] + is @scheme['solid] or @scheme["solid"], then the last argument must be an + @scheme[image-color?].})) + @defmodule[#:require-form beginner-require 2htdp/image] The image teachpack provides a number of basic image construction functions, along with @@ -27,70 +35,85 @@ Existing images can be rotated, scaled, and overlaid on top of each other. [color image-color?]) image?] [(circle [radius (and/c real? (not/c negative?))] - [mode 'outline] - [color pen?]) + [outline-mode (or/c 'outline "outline")] + [pen-or-color (or/c pen? image-color?)]) image?])]{ Constructs a circle with the given radius, height, mode, and color. - If the @scheme[mode] is @scheme['outline], then the @scheme[color] - can be a @scheme[pen?] struct or an @scheme[image-color?], but if the @scheme[mode] - is @scheme['solid], then the @scheme[color] must be an - @scheme[image-color?]. - - @image-examples[(circle 30 "outline" "red") - (circle 20 "solid" "blue")] + @mode/color-text + + @image-examples[(circle 30 "outline" "red") + (circle 20 "solid" "blue")] } -@defproc[(ellipse [width (and/c real? (not/c negative?))] - [height (and/c real? (not/c negative?))] - [mode mode?] - [color (or/c image-color? pen?)]) - image?]{ +@defproc*[([(ellipse [width (and/c real? (not/c negative?))] + [height (and/c real? (not/c negative?))] + [mode mode?] + [color image-color?]) + image?] + [(ellipse [width (and/c real? (not/c negative?))] + [height (and/c real? (not/c negative?))] + [mode (or/c 'outline "outline")] + [pen-or-color (or/c image-color? pen?)]) + image?])]{ Constructs an ellipsis with the given width, height, mode, and color. - If the @scheme[mode] is @scheme['outline], then the @scheme[color] - can be a @scheme[pen?] struct or an @scheme[image-color?], but if the @scheme[mode] - is @scheme['solid], then the @scheme[color] must be an - @scheme[image-color?]. + @mode/color-text @image-examples[(ellipse 40 20 "outline" "black") (ellipse 20 40 "solid" "blue")] } -@defproc[(triangle [side-length (and/c real? (not/c negative?))] - [mode mode?] - [color (if (or (equal? mode 'outline) - (equal? mode "outline")) - (or/c image-color? pen?) - image-color?)]) - image?]{ +@defproc*[([(triangle [side-length (and/c real? (not/c negative?))] + [mode mode?] + [color image-color?]) + image?] + [(triangle [side-length (and/c real? (not/c negative?))] + [outline-mode (or/c 'outline "outline")] + [pen-or-color (or/c pen? image-color?)]) + image?])]{ + Constructs a upward-pointing equilateral triangle. The @scheme[side-length] argument determines the length of the side of the triangle. -@image-examples[(triangle 40 "solid" "tan")] + @mode/color-text + + @image-examples[(triangle 40 "solid" "tan")] } -@defproc[(right-triangle [side-length1 (and/c real? (not/c negative?))] - [side-length2 (and/c real? (not/c negative?))] - [mode mode?] - [color image-color?]) - image?]{ +@defproc*[([(right-triangle [side-length1 (and/c real? (not/c negative?))] + [side-length2 (and/c real? (not/c negative?))] + [mode mode?] + [color image-color?]) + image?] + [(right-triangle [side-length1 (and/c real? (not/c negative?))] + [side-length2 (and/c real? (not/c negative?))] + [outline-mode (or/c 'outline "outline")] + [pen-or-color (or/c pen? image-color?)]) + image?])]{ Constructs a triangle with a right angle where the two sides adjacent to the right angle have lengths @scheme[side-length1] and @scheme[side-length2]. + @mode/color-text + @image-examples[(right-triangle 36 48 "solid" "black")] } - -@defproc[(isosceles-triangle [side-length (and/c real? (not/c negative?))] - [angle angle?] - [mode mode?] - [color image-color?]) - image?]{ + +@defproc*[([(isosceles-triangle [side-length (and/c real? (not/c negative?))] + [angle angle?] + [mode mode?] + [color image-color?]) + image?] + [(isosceles-triangle [side-length (and/c real? (not/c negative?))] + [angle angle?] + [outline-mode (or/c 'outline "outline")] + [pen-or-color (or/c pen? image-color?)]) + image?])]{ Creates a triangle with two equal-length sides, of length @scheme[side-length] where the angle between those sides is @scheme[angle]. The third @@ -98,72 +121,118 @@ Existing images can be rotated, scaled, and overlaid on top of each other. @scheme[180], then the triangle will point up and if the @scheme[angle] is more, then the triangle will point down. + @mode/color-text + @image-examples[(isosceles-triangle 200 170 "solid" "seagreen") (isosceles-triangle 60 30 "solid" "aquamarine") (isosceles-triangle 60 330 "solid" "lightseagreen")] } -@defproc[(square [side-length (and/c real? (not/c negative?))] - [mode mode?] - [color image-color?]) - image?]{ +@defproc*[([(square [side-len (and/c real? (not/c negative?))] + [mode mode?] + [color image-color?]) + image?] + [(square [side-len (and/c real? (not/c negative?))] + [outline-mode (or/c 'outline "outline")] + [pen-or-color (or/c pen? image-color?)]) + image?])]{ Constructs a square. + @mode/color-text + @image-examples[(square 40 "solid" "slateblue") (square 50 "outline" "darkmagenta")] } -@defproc[(rectangle [width real?] [height real?] [mode mode?] [color image-color?]) image?]{ +@defproc*[([(rectangle [width real?] + [height real?] + [mode mode?] + [color image-color?]) + image?] + [(rectangle [width real?] + [height real?] + [outline-mode (or/c 'outline "outline")] + [pen-or-color (or/c pen? image-color?)]) + image?])]{ Constructs a rectangle with the given width, height, mode, and color. + + @mode/color-text + @image-examples[(rectangle 40 20 "outline" "black") (rectangle 20 40 "solid" "blue")] } -@defproc[(rhombus [side-length (and/c real? (not/c negative?))] - [angle angle?] - [mode mode?] - [color image-color?]) - image?]{ +@defproc*[([(rhombus [side-length (and/c real? (not/c negative?))] + [angle angle?] + [mode mode?] + [color image-color?]) + image?] + [(rhombus [side-length (and/c real? (not/c negative?))] + [angle angle?] + [outline-mode (or/c 'outline "outline")] + [pen-or-color (or/c pen? image-color?)]) + image?])]{ Constructs a four sided polygon with all equal sides and thus where opposite angles are equal to each other. The top and bottom pair of angles is @scheme[angle] and the left and right are @scheme[(- 180 angle)]. +@mode/color-text + @image-examples[(rhombus 40 45 "solid" "magenta") (rhombus 80 150 "solid" "mediumpurple")] } -@defproc[(regular-polygon [side-length (and/c real? (not/c negative?))] - [side-count side-count?] - [mode mode?] - [color image-color?]) - image?]{ +@defproc*[([(regular-polygon [side-length (and/c real? (not/c negative?))] + [side-count side-count?] + [mode mode?] + [color image-color?]) + image?] + [(regular-polygon [side-length (and/c real? (not/c negative?))] + [side-count side-count?] + [outline-mode (or/c 'outline "outline")] + [pen-or-color (or/c pen? image-color?)]) + image?])]{ Constructs a regular polygon with @scheme[side-count] sides. + @mode/color-text + @image-examples[(regular-polygon 50 3 "outline" "red") (regular-polygon 40 4 "outline" "blue") (regular-polygon 20 8 "solid" "red")] } -@defproc[(star [side-length (and/c real? (not/c negative?))] - [mode mode?] - [color image-color?]) - image?]{ +@defproc*[([(star [side-length (and/c real? (not/c negative?))] + [mode mode?] + [color image-color?]) + image?] + [(star [side-length (and/c real? (not/c negative?))] + [outline-mode (or/c 'outline "outline")] + [color (or/c pen? image-color?)]) + image?])]{ Constructs a star with five points. The @scheme[side-length] argument determines the side length of the enclosing pentagon. + @mode/color-text + @image-examples[(star 40 "solid" "gray")] } -@defproc[(star-polygon [side-length (and/c real? (not/c negative?))] - [side-count side-count?] - [step-count step-count?] - [mode mode?] - [color image-color?]) - image?]{ +@defproc*[([(star-polygon [side-length (and/c real? (not/c negative?))] + [side-count side-count?] + [step-count step-count?] + [mode mode?] + [color image-color?]) + image?] + [(star-polygon [side-length (and/c real? (not/c negative?))] + [side-count side-count?] + [step-count step-count?] + [outline-mode (or/c 'outline "outline")] + [pen-or-color (or/c pen? image-color?)]) + image?])]{ Constructs an arbitrary regular star polygon (a generalization of the regular polygons). The polygon is enclosed by a regular polygon with @scheme[side-count] sides each @@ -173,18 +242,26 @@ other. The top and bottom pair of angles is @scheme[angle] and the left and righ For examples, if @scheme[side-count] is @scheme[5] and @scheme[step-count] is @scheme[2], then this function produces a shape just like @scheme[star]. + @mode/color-text + @image-examples[(star-polygon 40 5 2 "solid" "seagreen") (star-polygon 40 7 3 "outline" "darkred") (star-polygon 20 10 3 "solid" "cornflowerblue")] } -@defproc[(polygon [verticies (listof posn?)] - [mode mode?] - [color image-color?]) - image?]{ +@defproc*[([(polygon [verticies (listof posn?)] + [mode mode?] + [color image-color?]) + image?] + [(polygon [verticies (listof posn?)] + [outline-mode (or/c 'outline "outline")] + [pen-or-color (or/c pen? image-color?)]) + image?])]{ Constructs a polygon connecting the given verticies. + @mode/color-text + @image-examples[(polygon (list (make-posn 0 0) (make-posn -10 20) (make-posn 60 0) @@ -692,10 +769,20 @@ the parts that fit onto @scheme[scene]. } @defproc[(scale [factor real?] [image image?]) image?]{ + Scales @scheme[image] by @scheme[factor]. + + The pen sizes are also scaled and thus draw thicker (or thinner) + lines than the original image, unless the pen was size + @scheme[0]. That pen size is treated specially to mean ``the + smallest available line'' and thus it always draws a one pixel + wide line; this is also the case for @scheme['outline] and @scheme["outline"] + shapes that are drawn with an @scheme[image-color?] instead of + a @scheme[pen]. + - @image-examples[(scale 2 (ellipse 20 30 "solid" "blue")) - (ellipse 40 60 "solid" "blue")] + @image-examples[(scale 2 (ellipse 20 30 "solid" "blue")) + (ellipse 40 60 "solid" "blue")] @@ -916,3 +1003,34 @@ The baseline of an image is the place where the bottoms any letters line up, not Two images are equal if they draw exactly the same way, at their current size (not neccessarily at all sizes). +@section{The nitty gritty of pixels, pens, and lines} + +The image library treats coordinates as if they are in the upper-left corner +of each pixel, and infinitesimally small. + +Thus, when drawing a solid @scheme[square] of whose side-length is 10, the image library +colors in all of the pixels enclosed by the @scheme[square] starting at the upper +left corner of (0,0) and going down to the upper left corner of (10,10), +so the pixel whose upper left at (9,9) is colored in, but the pixel +at (10,10) is not. All told, 100 pixels get colored in, just as expected for +a @scheme[square] with a side length of 10. + +When drawing lines, however, things get a bit more complex. Specifically, +imagine drawing the outline of that rectangle. Since the border is +between the pixels, there really isn't a natural pixel to draw to indicate +the border. Accordingly, when drawing an outline @scheme[square] (without a +@scheme[pen] specification, but just a color as the last argument), +the image library uses a pen whose width is 1 pixel, but draws a line +centered at the point (0.5,0.5) that goes down and around to the point (10.5,10.5). +This means that the outline slightly exceeds the bounding box of the shape. +Specifically, the upper and left-hand lines around the square are within +the bounding box, but the lower and right-hand lines are just outside. + +The special case of adding 0.5 to each coordinate when drawing the square +applies to all polygon-based shapes, but does not apply when a @scheme[pen] +is passed as the last argument to create the shape. +In that case, not adjustment of the pixels is performed and using a one +pixel wide pen draws the pixels above and below the line, but each with +a color that is half of the intensity of the given color. Using a +@scheme[pen] with with two, colors the pixels above and below the line +with the full intensity. diff --git a/collects/teachpack/2htdp/scribblings/img/10735f73f78.png b/collects/teachpack/2htdp/scribblings/img/10735f73f78.png index 41d52546c0..74b36d7285 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/10735f73f78.png and b/collects/teachpack/2htdp/scribblings/img/10735f73f78.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/10847861f4b.png b/collects/teachpack/2htdp/scribblings/img/10847861f4b.png index 28209c64d4..93d0e90557 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/10847861f4b.png and b/collects/teachpack/2htdp/scribblings/img/10847861f4b.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/10a0d35fa03.png b/collects/teachpack/2htdp/scribblings/img/10a0d35fa03.png index 37de0d1fa4..d8716f4a65 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/10a0d35fa03.png and b/collects/teachpack/2htdp/scribblings/img/10a0d35fa03.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/1132401ea93.png b/collects/teachpack/2htdp/scribblings/img/1132401ea93.png index 48045cdc4c..76bd236080 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/1132401ea93.png and b/collects/teachpack/2htdp/scribblings/img/1132401ea93.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/11402043018.png b/collects/teachpack/2htdp/scribblings/img/11402043018.png index 4d58aaeb8c..19d80754fd 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/11402043018.png and b/collects/teachpack/2htdp/scribblings/img/11402043018.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/11b64ab4d3.png b/collects/teachpack/2htdp/scribblings/img/11b64ab4d3.png index cd3326d096..db3f38aa1c 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/11b64ab4d3.png and b/collects/teachpack/2htdp/scribblings/img/11b64ab4d3.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/126418b230e.png b/collects/teachpack/2htdp/scribblings/img/126418b230e.png index 042649d335..6d834be9f9 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/126418b230e.png and b/collects/teachpack/2htdp/scribblings/img/126418b230e.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/12948ac080d.png b/collects/teachpack/2htdp/scribblings/img/12948ac080d.png index a61711fd62..2bbf621e91 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/12948ac080d.png and b/collects/teachpack/2htdp/scribblings/img/12948ac080d.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/12b0447b10c.png b/collects/teachpack/2htdp/scribblings/img/12b0447b10c.png index ea65c0a194..646be0ddd1 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/12b0447b10c.png and b/collects/teachpack/2htdp/scribblings/img/12b0447b10c.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/1325a6e7bdb.png b/collects/teachpack/2htdp/scribblings/img/1325a6e7bdb.png index 6debf734d9..4cfccb6111 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/1325a6e7bdb.png and b/collects/teachpack/2htdp/scribblings/img/1325a6e7bdb.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/133309751d2.png b/collects/teachpack/2htdp/scribblings/img/133309751d2.png index 6ab99f4b06..76665a9d69 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/133309751d2.png and b/collects/teachpack/2htdp/scribblings/img/133309751d2.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/138792ad221.png b/collects/teachpack/2htdp/scribblings/img/138792ad221.png index 35474865fa..f7b6c835ff 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/138792ad221.png and b/collects/teachpack/2htdp/scribblings/img/138792ad221.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/13aef4074e9.png b/collects/teachpack/2htdp/scribblings/img/13aef4074e9.png index 2550b83eb3..7220d4363c 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/13aef4074e9.png and b/collects/teachpack/2htdp/scribblings/img/13aef4074e9.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/13b344ed2ff.png b/collects/teachpack/2htdp/scribblings/img/13b344ed2ff.png index c2a1ac2e4d..1e8277f47b 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/13b344ed2ff.png and b/collects/teachpack/2htdp/scribblings/img/13b344ed2ff.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/13e518b230e.png b/collects/teachpack/2htdp/scribblings/img/13e518b230e.png index 2a6171ff5a..1cb973ebd3 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/13e518b230e.png and b/collects/teachpack/2htdp/scribblings/img/13e518b230e.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/1404e4b2af.png b/collects/teachpack/2htdp/scribblings/img/1404e4b2af.png index 4054bff87e..7a77934126 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/1404e4b2af.png and b/collects/teachpack/2htdp/scribblings/img/1404e4b2af.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/150e1d5e9f.png b/collects/teachpack/2htdp/scribblings/img/150e1d5e9f.png index 818f75c8e0..a1b9c64aad 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/150e1d5e9f.png and b/collects/teachpack/2htdp/scribblings/img/150e1d5e9f.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/1532990d5cb.png b/collects/teachpack/2htdp/scribblings/img/1532990d5cb.png index 84f6cd5fc6..2cbd994d51 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/1532990d5cb.png and b/collects/teachpack/2htdp/scribblings/img/1532990d5cb.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/15717b87d30.png b/collects/teachpack/2htdp/scribblings/img/15717b87d30.png index 3290717ca7..8cae7a8f42 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/15717b87d30.png and b/collects/teachpack/2htdp/scribblings/img/15717b87d30.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/157ab5efca7.png b/collects/teachpack/2htdp/scribblings/img/157ab5efca7.png index 3290717ca7..8cae7a8f42 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/157ab5efca7.png and b/collects/teachpack/2htdp/scribblings/img/157ab5efca7.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/164b8da7bf6.png b/collects/teachpack/2htdp/scribblings/img/164b8da7bf6.png index 73e3167594..3f5e957375 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/164b8da7bf6.png and b/collects/teachpack/2htdp/scribblings/img/164b8da7bf6.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/169990a635e.png b/collects/teachpack/2htdp/scribblings/img/169990a635e.png index f812cf671a..b2593ebe1a 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/169990a635e.png and b/collects/teachpack/2htdp/scribblings/img/169990a635e.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/169f2ceb45c.png b/collects/teachpack/2htdp/scribblings/img/169f2ceb45c.png index 89fdbfc52e..d4b7ede7b8 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/169f2ceb45c.png and b/collects/teachpack/2htdp/scribblings/img/169f2ceb45c.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/16a631adf1e.png b/collects/teachpack/2htdp/scribblings/img/16a631adf1e.png index 5bbe9d16d4..ef51f68169 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/16a631adf1e.png and b/collects/teachpack/2htdp/scribblings/img/16a631adf1e.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/196bfa7b9c4.png b/collects/teachpack/2htdp/scribblings/img/196bfa7b9c4.png index e77dceabaf..2a646850aa 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/196bfa7b9c4.png and b/collects/teachpack/2htdp/scribblings/img/196bfa7b9c4.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/1a0088e3819.png b/collects/teachpack/2htdp/scribblings/img/1a0088e3819.png index d23a3b9702..da6a6aaafc 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/1a0088e3819.png and b/collects/teachpack/2htdp/scribblings/img/1a0088e3819.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/1aaa434b462.png b/collects/teachpack/2htdp/scribblings/img/1aaa434b462.png index 77e7adbefe..9e3acbc688 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/1aaa434b462.png and b/collects/teachpack/2htdp/scribblings/img/1aaa434b462.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/1acede17bc6.png b/collects/teachpack/2htdp/scribblings/img/1acede17bc6.png index 99da2170c4..4d047fdaec 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/1acede17bc6.png and b/collects/teachpack/2htdp/scribblings/img/1acede17bc6.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/1bbeedc0d6.png b/collects/teachpack/2htdp/scribblings/img/1bbeedc0d6.png index c2be67c839..cd170b1c51 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/1bbeedc0d6.png and b/collects/teachpack/2htdp/scribblings/img/1bbeedc0d6.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/1f0b671ed7b.png b/collects/teachpack/2htdp/scribblings/img/1f0b671ed7b.png index 14f280af24..2d310ea332 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/1f0b671ed7b.png and b/collects/teachpack/2htdp/scribblings/img/1f0b671ed7b.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/1f5944ec1ed.png b/collects/teachpack/2htdp/scribblings/img/1f5944ec1ed.png index 2b513da234..8c49da86a2 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/1f5944ec1ed.png and b/collects/teachpack/2htdp/scribblings/img/1f5944ec1ed.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/201c231dce2.png b/collects/teachpack/2htdp/scribblings/img/201c231dce2.png index f641cfdd40..582f004f71 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/201c231dce2.png and b/collects/teachpack/2htdp/scribblings/img/201c231dce2.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/2187216ca96.png b/collects/teachpack/2htdp/scribblings/img/2187216ca96.png index 425739ecc5..36949fd2ba 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/2187216ca96.png and b/collects/teachpack/2htdp/scribblings/img/2187216ca96.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/21b080bdda8.png b/collects/teachpack/2htdp/scribblings/img/21b080bdda8.png index 6bf1de68c5..d3e0c455b7 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/21b080bdda8.png and b/collects/teachpack/2htdp/scribblings/img/21b080bdda8.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/2330a222ac0.png b/collects/teachpack/2htdp/scribblings/img/2330a222ac0.png index 9274a7d58d..d039ba6c0b 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/2330a222ac0.png and b/collects/teachpack/2htdp/scribblings/img/2330a222ac0.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/24365c877d4.png b/collects/teachpack/2htdp/scribblings/img/24365c877d4.png index 80925da142..a055c89ab2 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/24365c877d4.png and b/collects/teachpack/2htdp/scribblings/img/24365c877d4.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/24410dd26db.png b/collects/teachpack/2htdp/scribblings/img/24410dd26db.png index 49980a64a9..d42b68d73b 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/24410dd26db.png and b/collects/teachpack/2htdp/scribblings/img/24410dd26db.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/24e80ea10b4.png b/collects/teachpack/2htdp/scribblings/img/24e80ea10b4.png index 3fa98bc587..43659d6e16 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/24e80ea10b4.png and b/collects/teachpack/2htdp/scribblings/img/24e80ea10b4.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/25354f2b84e.png b/collects/teachpack/2htdp/scribblings/img/25354f2b84e.png index ef8f7a061a..03cb70eb74 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/25354f2b84e.png and b/collects/teachpack/2htdp/scribblings/img/25354f2b84e.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/25451dd2997.png b/collects/teachpack/2htdp/scribblings/img/25451dd2997.png index bccea64f92..2833c9b7d5 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/25451dd2997.png and b/collects/teachpack/2htdp/scribblings/img/25451dd2997.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/25dd3e2d97c.png b/collects/teachpack/2htdp/scribblings/img/25dd3e2d97c.png index f5ab17d819..6f31fd2399 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/25dd3e2d97c.png and b/collects/teachpack/2htdp/scribblings/img/25dd3e2d97c.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/262a4fa650a.png b/collects/teachpack/2htdp/scribblings/img/262a4fa650a.png index a6cb9f5584..0dd50084e1 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/262a4fa650a.png and b/collects/teachpack/2htdp/scribblings/img/262a4fa650a.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/268c974b9ab.png b/collects/teachpack/2htdp/scribblings/img/268c974b9ab.png index 6ec37c3a0d..bbc68329a5 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/268c974b9ab.png and b/collects/teachpack/2htdp/scribblings/img/268c974b9ab.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/26bd803042c.png b/collects/teachpack/2htdp/scribblings/img/26bd803042c.png index 14f280af24..2d310ea332 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/26bd803042c.png and b/collects/teachpack/2htdp/scribblings/img/26bd803042c.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/26c4c403875.png b/collects/teachpack/2htdp/scribblings/img/26c4c403875.png index ef6d9ce1c9..7cb0cc0280 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/26c4c403875.png and b/collects/teachpack/2htdp/scribblings/img/26c4c403875.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/2758748ad7f.png b/collects/teachpack/2htdp/scribblings/img/2758748ad7f.png index dddda8f4b6..0814f3ef95 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/2758748ad7f.png and b/collects/teachpack/2htdp/scribblings/img/2758748ad7f.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/27bbbb6fd64.png b/collects/teachpack/2htdp/scribblings/img/27bbbb6fd64.png index 444f8734de..ffe47dc980 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/27bbbb6fd64.png and b/collects/teachpack/2htdp/scribblings/img/27bbbb6fd64.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/28253f4c3c.png b/collects/teachpack/2htdp/scribblings/img/28253f4c3c.png index 4562244049..d2a06d730c 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/28253f4c3c.png and b/collects/teachpack/2htdp/scribblings/img/28253f4c3c.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/28c73238138.png b/collects/teachpack/2htdp/scribblings/img/28c73238138.png index ecaaca4378..27c038dd27 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/28c73238138.png and b/collects/teachpack/2htdp/scribblings/img/28c73238138.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/28daec71a64.png b/collects/teachpack/2htdp/scribblings/img/28daec71a64.png index 0642049e27..886c76044a 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/28daec71a64.png and b/collects/teachpack/2htdp/scribblings/img/28daec71a64.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/29b31e5fe3a.png b/collects/teachpack/2htdp/scribblings/img/29b31e5fe3a.png index 32d27bb051..82647dc886 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/29b31e5fe3a.png and b/collects/teachpack/2htdp/scribblings/img/29b31e5fe3a.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/2a1f3988f.png b/collects/teachpack/2htdp/scribblings/img/2a1f3988f.png index 3856a91e09..ce9a9ae737 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/2a1f3988f.png and b/collects/teachpack/2htdp/scribblings/img/2a1f3988f.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/2b944b7ab91.png b/collects/teachpack/2htdp/scribblings/img/2b944b7ab91.png index c951e4c565..f0777aad1e 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/2b944b7ab91.png and b/collects/teachpack/2htdp/scribblings/img/2b944b7ab91.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/2cc717fb347.png b/collects/teachpack/2htdp/scribblings/img/2cc717fb347.png index de0f691ba8..02e149bfb9 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/2cc717fb347.png and b/collects/teachpack/2htdp/scribblings/img/2cc717fb347.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/2d9ba9032e.png b/collects/teachpack/2htdp/scribblings/img/2d9ba9032e.png index e77dceabaf..2a646850aa 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/2d9ba9032e.png and b/collects/teachpack/2htdp/scribblings/img/2d9ba9032e.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/2dde939d6dc.png b/collects/teachpack/2htdp/scribblings/img/2dde939d6dc.png index 3a952a3d57..db7413ee30 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/2dde939d6dc.png and b/collects/teachpack/2htdp/scribblings/img/2dde939d6dc.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/2e6a31a9033.png b/collects/teachpack/2htdp/scribblings/img/2e6a31a9033.png index 178a528a7b..879569394e 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/2e6a31a9033.png and b/collects/teachpack/2htdp/scribblings/img/2e6a31a9033.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/353ed4578.png b/collects/teachpack/2htdp/scribblings/img/353ed4578.png index 3856a91e09..ce9a9ae737 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/353ed4578.png and b/collects/teachpack/2htdp/scribblings/img/353ed4578.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/42f9f9e4cf.png b/collects/teachpack/2htdp/scribblings/img/42f9f9e4cf.png index 6ab99f4b06..76665a9d69 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/42f9f9e4cf.png and b/collects/teachpack/2htdp/scribblings/img/42f9f9e4cf.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/4e85791a5.png b/collects/teachpack/2htdp/scribblings/img/4e85791a5.png index 0431b81188..e435679667 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/4e85791a5.png and b/collects/teachpack/2htdp/scribblings/img/4e85791a5.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/54a488e1a5.png b/collects/teachpack/2htdp/scribblings/img/54a488e1a5.png index ea08ed9937..c9e9b1a692 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/54a488e1a5.png and b/collects/teachpack/2htdp/scribblings/img/54a488e1a5.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/54d58bf7f6.png b/collects/teachpack/2htdp/scribblings/img/54d58bf7f6.png index 21d9ada3cb..942c2e52bf 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/54d58bf7f6.png and b/collects/teachpack/2htdp/scribblings/img/54d58bf7f6.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/5ec4a0cb1f.png b/collects/teachpack/2htdp/scribblings/img/5ec4a0cb1f.png index ad20f76df3..2d67258f5c 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/5ec4a0cb1f.png and b/collects/teachpack/2htdp/scribblings/img/5ec4a0cb1f.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/69aaaa680d.png b/collects/teachpack/2htdp/scribblings/img/69aaaa680d.png index a61711fd62..2bbf621e91 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/69aaaa680d.png and b/collects/teachpack/2htdp/scribblings/img/69aaaa680d.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/6a5a617f28.png b/collects/teachpack/2htdp/scribblings/img/6a5a617f28.png index 3023e68f76..4bb9e69275 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/6a5a617f28.png and b/collects/teachpack/2htdp/scribblings/img/6a5a617f28.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/6c262f1d24.png b/collects/teachpack/2htdp/scribblings/img/6c262f1d24.png index 3e0b8e3ec2..9c807aa52e 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/6c262f1d24.png and b/collects/teachpack/2htdp/scribblings/img/6c262f1d24.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/6efa12ea15.png b/collects/teachpack/2htdp/scribblings/img/6efa12ea15.png index 3d53897ff0..f8f50625d5 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/6efa12ea15.png and b/collects/teachpack/2htdp/scribblings/img/6efa12ea15.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/72aef3dc67.png b/collects/teachpack/2htdp/scribblings/img/72aef3dc67.png index 980f520e83..f23e71fde1 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/72aef3dc67.png and b/collects/teachpack/2htdp/scribblings/img/72aef3dc67.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/7bbcc7cbaa.png b/collects/teachpack/2htdp/scribblings/img/7bbcc7cbaa.png index e6ad7d2fb0..c4531561ed 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/7bbcc7cbaa.png and b/collects/teachpack/2htdp/scribblings/img/7bbcc7cbaa.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/89a0d469a7.png b/collects/teachpack/2htdp/scribblings/img/89a0d469a7.png index 09f2565b2d..6d8a7de7f8 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/89a0d469a7.png and b/collects/teachpack/2htdp/scribblings/img/89a0d469a7.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/89b3a9e462.png b/collects/teachpack/2htdp/scribblings/img/89b3a9e462.png index 8ac79e505c..bfef7a7524 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/89b3a9e462.png and b/collects/teachpack/2htdp/scribblings/img/89b3a9e462.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/8cb34e62d4.png b/collects/teachpack/2htdp/scribblings/img/8cb34e62d4.png index dc72425512..b7991ba733 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/8cb34e62d4.png and b/collects/teachpack/2htdp/scribblings/img/8cb34e62d4.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/8e1ebaaf82.png b/collects/teachpack/2htdp/scribblings/img/8e1ebaaf82.png index 1958afe988..a121e74837 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/8e1ebaaf82.png and b/collects/teachpack/2htdp/scribblings/img/8e1ebaaf82.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/8e7c1870c7.png b/collects/teachpack/2htdp/scribblings/img/8e7c1870c7.png index f7cfd7faf5..16f3c9ea26 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/8e7c1870c7.png and b/collects/teachpack/2htdp/scribblings/img/8e7c1870c7.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/957fe78565.png b/collects/teachpack/2htdp/scribblings/img/957fe78565.png index ada81569bf..65aa7da8d8 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/957fe78565.png and b/collects/teachpack/2htdp/scribblings/img/957fe78565.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/969a9aa483.png b/collects/teachpack/2htdp/scribblings/img/969a9aa483.png index 2817006b15..91ed7a9037 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/969a9aa483.png and b/collects/teachpack/2htdp/scribblings/img/969a9aa483.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/9858b8d5d.png b/collects/teachpack/2htdp/scribblings/img/9858b8d5d.png index 7f5ee10885..3fda459e1a 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/9858b8d5d.png and b/collects/teachpack/2htdp/scribblings/img/9858b8d5d.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/aac8b78b6e.png b/collects/teachpack/2htdp/scribblings/img/aac8b78b6e.png index f8c1b258af..0a15fd5fb5 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/aac8b78b6e.png and b/collects/teachpack/2htdp/scribblings/img/aac8b78b6e.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/ab1841ea36.png b/collects/teachpack/2htdp/scribblings/img/ab1841ea36.png index 9eca803a59..4aab00dbf3 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/ab1841ea36.png and b/collects/teachpack/2htdp/scribblings/img/ab1841ea36.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/aeddf66d5d.png b/collects/teachpack/2htdp/scribblings/img/aeddf66d5d.png index dfa4c9bb88..0755ac22fc 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/aeddf66d5d.png and b/collects/teachpack/2htdp/scribblings/img/aeddf66d5d.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/b32ce6fcc5.png b/collects/teachpack/2htdp/scribblings/img/b32ce6fcc5.png index 006ee64d24..b0fb28f34f 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/b32ce6fcc5.png and b/collects/teachpack/2htdp/scribblings/img/b32ce6fcc5.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/cf131e14ad.png b/collects/teachpack/2htdp/scribblings/img/cf131e14ad.png index ae707dd226..0778b97421 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/cf131e14ad.png and b/collects/teachpack/2htdp/scribblings/img/cf131e14ad.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/d417a51b4.png b/collects/teachpack/2htdp/scribblings/img/d417a51b4.png index cce3f019b0..6bc68e9390 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/d417a51b4.png and b/collects/teachpack/2htdp/scribblings/img/d417a51b4.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/d47072011e.png b/collects/teachpack/2htdp/scribblings/img/d47072011e.png index 5e715010af..a25d217a3e 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/d47072011e.png and b/collects/teachpack/2htdp/scribblings/img/d47072011e.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/d629961aee.png b/collects/teachpack/2htdp/scribblings/img/d629961aee.png index beb06b3c45..1b5727c941 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/d629961aee.png and b/collects/teachpack/2htdp/scribblings/img/d629961aee.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/d92d6a49f1.png b/collects/teachpack/2htdp/scribblings/img/d92d6a49f1.png index 178a528a7b..879569394e 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/d92d6a49f1.png and b/collects/teachpack/2htdp/scribblings/img/d92d6a49f1.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/eb99639e31.png b/collects/teachpack/2htdp/scribblings/img/eb99639e31.png index 23350d9777..70a9869420 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/eb99639e31.png and b/collects/teachpack/2htdp/scribblings/img/eb99639e31.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/fa1a9f17b6.png b/collects/teachpack/2htdp/scribblings/img/fa1a9f17b6.png index 3d53897ff0..f8f50625d5 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/fa1a9f17b6.png and b/collects/teachpack/2htdp/scribblings/img/fa1a9f17b6.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/fdaad0760b.png b/collects/teachpack/2htdp/scribblings/img/fdaad0760b.png index 5595a95a69..b4d7ceb719 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/fdaad0760b.png and b/collects/teachpack/2htdp/scribblings/img/fdaad0760b.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/ff11314e4e.png b/collects/teachpack/2htdp/scribblings/img/ff11314e4e.png index 243077914a..db0279ff4c 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/ff11314e4e.png and b/collects/teachpack/2htdp/scribblings/img/ff11314e4e.png differ diff --git a/collects/teachpack/2htdp/scribblings/img/ff2fcb7b87.png b/collects/teachpack/2htdp/scribblings/img/ff2fcb7b87.png index 9448fa6c24..69a7750b45 100644 Binary files a/collects/teachpack/2htdp/scribblings/img/ff2fcb7b87.png and b/collects/teachpack/2htdp/scribblings/img/ff2fcb7b87.png differ