ETOOBUSY 🚀 minimal blogging for the impatient
Area of a triangle, again
TL;DR
How the triangle’s area should be really calculated.
In Area of a triangle I described a way to calculate the area of a triangle with a formula that I “derived myself” - in the sense that I wanted to solve that problem and used my past maths knowledge. This is what I ended up with:
S=√(→v⋅→v)⋅(→w⋅→w)−(→v⋅→w)⋅(→v⋅→w)2It turns out that the world consistently beats (most of) us, so I found Area of Triangles and Polygons that provides this instead:
S′=vx⋅wy−vy⋅wx2S=|S′|This is so amazing and superior:
- no square roots, how cool can that be?
- the result is signed, which gives us an idea of whether →v is on the “right” or the “left” of →w, which might come handy.
Awesome! So… code time again (I also played a bit with the inputs to cut one line out):
sub triangle_area {
my ($v_x, $v_y) = ($_[1][0] - $_[0][0], $_[1][1] - $_[0][1]);
my ($w_x, $w_y) = ($_[2][0] - $_[0][0], $_[2][1] - $_[0][1]);
return ($v_x * $w_y - $v_y * $w_x) / 2;
}