Skip to content

Instantly share code, notes, and snippets.

@defndaines
Created December 29, 2016 18:54
Show Gist options
  • Select an option

  • Save defndaines/c4c942e7b44c2f0cd5618e465e34af7d to your computer and use it in GitHub Desktop.

Select an option

Save defndaines/c4c942e7b44c2f0cd5618e465e34af7d to your computer and use it in GitHub Desktop.
Trapezoid Area
(defn trap-area
"Trapezoid area."
[x1 x2 y1 y2]
(* (Math/abs (- x1 x2))
(/ (+ y1 y2) 2)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment