Skip to content

Instantly share code, notes, and snippets.

@greggirwin
Created June 23, 2016 04:37
Show Gist options
  • Save greggirwin/09d8ec3780e943cd3cfa7820f6965ed1 to your computer and use it in GitHub Desktop.
Save greggirwin/09d8ec3780e943cd3cfa7820f6965ed1 to your computer and use it in GitHub Desktop.
Interactive crosshairs in 15 LOC
Red [Author: "Gregg Irwin"]
view [
text bold "Crosshairs" text "Move the mouse"
return
base 640x480 water all-over
draw [pen black h-line: line 0x0 0x0 v-line: line 0x0 0x0]
on-over [
h-line/2: as-pair 0 event/offset/y
h-line/3: as-pair 640 event/offset/y
v-line/2: as-pair event/offset/x 0
v-line/3: as-pair event/offset/x 480
]
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment