I'd forgotten about Planet Cute - another valid way to enter.

[image: Post image] <https://i.redd.it/xgvtzkr40sh31.png>

2htdp/planetcute image

try this:

https://docs.racket-lang.org/teachpack/2htdpPlanet_Cute_Images.html

#lang racket
(require 2htdp/image 2htdp/planetcute)
;The 2htdp/planetcute library contains the Planet Cute art by Daniel Cook
(Lostgarden.com).
;
;The images are designed to be overlaid with each other to build scenes for
use in games. Here is an example image taken from the Planet Cute website.
; stack : non-empty-list-of-images -> image
; stacks 'imgs' on each other, separated by 40 pixels
(define (stack imgs)
  (cond
    [(empty? (rest imgs)) (first imgs)]
    [else (overlay/xy (first imgs)
                      0 40
                      (stack (rest imgs)))]))
(beside/align
   "bottom"
   (stack (list wall-block-tall stone-block))
   (stack (list character-cat-girl
                stone-block stone-block
                stone-block stone-block))
   water-block
   (stack (list grass-block dirt-block))
   (stack (list grass-block dirt-block dirt-block)))



On Wed, Aug 21, 2019 at 6:19 PM Stephen De Gabrielle <
spdegabrie...@gmail.com> wrote:

> Only 10 days left!
>
> Get your entries in!
>
>
> https://github.com/standard-fish/summer-competititon-2019/blob/master/README.md
>
>
> On Wed, 31 Jul 2019 at 04:28, Stephen De Gabrielle <
> spdegabrie...@gmail.com> wrote:
>
>> *Subject: [standard-fish] Summer competiton 2019*
>> *'Summer standard fish competition 2019'*
>> [image: image]
>> Competition: Make an image with Racket this summer! Win stickers!
>>
>> Rules:
>> * you can make images any way you like. I suggest *pict *or *htdp2e/image,
>> but you can use whatever you like!*
>> * Images can be of anything.  Images do not have to be of fish. There is
>> no advantage in fish images.
>> * You can enter as many times as you like.
>>
>> It is easy to enter - just post your entry on racket-users, either by
>> email or via google groups, with the prefix '[standard-fish]' just like
>> this email.
>>
>> Please remember to put [standard-fish] at the begining of the email
>> subject line so I can easily identfy your entry.
>>
>> You can paste your code onto the the end of your message, or inlcude a
>> link to a GitLab or GitHub repository/file,  a GitHub Gist, or anything
>> else appropriate.
>> - I don't recommend using attachments on the mailing list/google groups.
>>
>> What will you win? I'll send Racket stickers
>> <https://devswag.com/products/racket> to the top 10 winners!
>>
>> Closing date: 1 September 2019 judging will take place in the first two
>> weeks of September, and winners will be announced 14 September. (I'm away
>> for most of August so I look forward to seeing your creations on my return)
>>
>> Note: Not an official Racket competition. I am not a member of the Racket
>> team, nor am I doing this on their behalf. I am covering the cost of the
>> stickers and postage.
>>
>> Any questions: email me at spdegabrielle at gmail dot com
>>
>> Have a good summer holidays!
>>
>> Stephen
>>
>> ---
>>
>> Need help getting started?
>>
>>    - Quick: An Introduction to Racket with Pictures
>>    <https://docs.racket-lang.org/quick/index.html>
>>    - Pict: Functional Pictures
>>    <https://docs.racket-lang.org/pict/index.html>
>>    -  2htdp/image
>>    <https://docs.racket-lang.org/teachpack/2htdpimage.html>
>>    - https://github.com/standard-fish/paper-doll - provided by Matthew
>>    Flatt: *'In case it's of interest, enclosed is some code extracted
>>    from one of my talks. Start by running "demo.rkt". Someone might be
>>    interested to play with it or turn it into something better. Since there 
>> is
>>    no documentation, that someone would have to read the code to extract the
>>    various acceptable values for arguments. The most obvious direction for
>>    improvement is that choices like hair style and color should have been
>>    separated into different arguments."*
>>
>> Having trouble? - ask a question on racket-users. You can also try
>> stack-overflow and reddit but YMMV.
>>
>>  standard-fish
>> <https://docs.racket-lang.org/pict/More_Pict_Constructors.html#%28def._%28%28lib._pict%2Fmain..rkt%29._standard-fish%29%29>
>> [image: image]
>>
>>
>> --
> ----
>

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/CAGHj7-K-ePRPVTzPF5Jiq5QJVB3u-R2xSR90MHr3_ouMR%2B8cug%40mail.gmail.com.

Reply via email to