#include "triangle.h" // Read in three points of the triangle void read (triangle& T) { read(T.vertex[0]); read(T.vertex[1]); read(T.vertex[2]); }