Created
December 29, 2016 18:54
-
-
Save defndaines/c4c942e7b44c2f0cd5618e465e34af7d to your computer and use it in GitHub Desktop.
Trapezoid Area
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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