Skip to content

Commit

Permalink
Move images to separate folder
Browse files Browse the repository at this point in the history
  • Loading branch information
b-studios committed Nov 10, 2015
1 parent c92dc20 commit a72ed70
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
8 changes: 4 additions & 4 deletions render.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@
(define SPACE (rectangle WIDTH HEIGHT "solid" "black"))

; image depicting the earth
(define EARTH-IMAGE (bitmap/file "earth_small.jpg"))
(define EARTH-IMAGE (bitmap/file "images/earth_small.jpg"))

; image depicting the moon
(define MOON-IMAGE (bitmap/file "moon_small.jpg"))
(define MOON-IMAGE (bitmap/file "images/moon_small.jpg"))

; image depicting the gps-satellite
(define SAT-IMAGE (scale 0.1 (bitmap/file "satellite.png")))
(define SAT-IMAGE (scale 0.1 (bitmap/file "images/satellite.png")))

; image depicting the space-ship
(define SHIP-IMAGE (bitmap/file "rocket.png"))
(define SHIP-IMAGE (bitmap/file "images/rocket.png"))

; Mission -> Number
; computes the pixel-per-meter ration for the current zoom-level.
Expand Down

0 comments on commit a72ed70

Please sign in to comment.