/*
Appellation: area <module>
Contrib: @FL03
*//// given the coordinates of the vertices of a triangle, calculate the area
pubfntriangle_area<T>((a,b):(T, T), (c,d):(T, T), (e,f):(T, T))-> T
where
T:num::Float,
{let half =T::from(2).unwrap().recip();
half *((c - a)*(f - b)-(e - a)*(d - b)).abs()}