diff options
author | siddharth ravikumar <s@ricketyspace.net> | 2022-06-19 17:41:02 -0400 |
---|---|---|
committer | siddharth ravikumar <s@ricketyspace.net> | 2022-06-19 17:41:02 -0400 |
commit | 2ba2b39f73d0fa9f01d096983fbc8f630a8bc6e9 (patch) | |
tree | 785acd239eba4f89ac17c6410157bb800c6b5c9c /static | |
parent | 653568e6f5b92f77ba78e9e65397edf83d9be8e7 (diff) |
static/logo: peach.rkt: use `make-logo` to make logo
Diffstat (limited to 'static')
-rw-r--r-- | static/logo/peach.rkt | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/static/logo/peach.rkt b/static/logo/peach.rkt index 506e65e..54e1382 100644 --- a/static/logo/peach.rkt +++ b/static/logo/peach.rkt @@ -50,13 +50,5 @@ (png-export logo-bitmap size))) ;Export logo to a PNG file. -;; Peach logo as a bitmap. -(define peach-logo (draw-logo 500)) - - -;; Render logo in racket shell. -(make-object image-snip% peach-logo) - - -;; Export logo to a PNG file. -(png-export peach-logo 500) +;; Make 500x500 logo. +(make-logo 500) |