Given the corner points of a triangle (x1, y1), (x2, y2), (x3, y3), compute the area.
Hint: The area of the triangle with corner points (0, 0), (x1, y1), and (x2, y2) is |x1 · y2 - x2 · y1| / 2.