Any questions do not hesitate to contact.
/**
* Author: Mattias de Zalenski
* Date: 2002-11-04
* Description: Magic formula for the volume of a polyhedron. Faces should point outwards.
* Status: tested
*/
#pragma once
template <class V, class L>
double signed_poly_volume(const V& p, const L& trilist) {
double v = 0;
trav(i, trilist) v += p[i.a].cross(p[i.b]).dot(p[i.c]);
return v / 6;
}
Keep in touch with Isaac Lozano Osorio!