Created
April 14, 2019 04:56
-
-
Save pgp44/b869c680ad17761f95916d1a5b89cdcb to your computer and use it in GitHub Desktop.
This file contains 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
create function triangle_surface(p1 point_t,p2 point_t,p3 point_t) | |
returns float | |
language SQL | |
as $$ | |
select abs(p1.x*(p2.y-p3.y)+p2.x*(p3.y-p1.y)+p3.x*(p1.y-p2.y))/2 | |
$$; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment