Skip to content

Instantly share code, notes, and snippets.

@si14
Created March 12, 2012 15:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save si14/d387a930cf1cba1f023a to your computer and use it in GitHub Desktop.
Save si14/d387a930cf1cba1f023a to your computer and use it in GitHub Desktop.
(defn tiles-flip-vert [tiles]
(let [flip-vert (partial - (apply max (map :y tiles)))]
(map #(update-in % [:y] flip-vert) tiles)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment