Skip to content

Instantly share code, notes, and snippets.

@joelturnbull
Created June 15, 2011 01:37
Show Gist options
  • Save joelturnbull/1026321 to your computer and use it in GitHub Desktop.
Save joelturnbull/1026321 to your computer and use it in GitHub Desktop.
East-Facing StarMap Rendering
StarMap>>renderContentOn: html
self generateStarCollection renderStarsOn: html.
StarCollection>>renderStarsOn: html
stars do: [ :aStar | aStar renderHtmlOn: html ].
Star>>renderHtmlOn: html
html text: name.
html text: x.
html text: y.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment