Skip to content

Instantly share code, notes, and snippets.

@Licenser
Created July 11, 2010 11:02
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 Licenser/471462 to your computer and use it in GitHub Desktop.
Save Licenser/471462 to your computer and use it in GitHub Desktop.
(defn distance-from-line [[A B] P]
(let [AB (v- B A)
AP (v- P A)]
(/ (vlen (vx AB AP)) (vlen AB))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment