/* Triangle.h */
#include "Point.h"

typedef struct { point A; point B; point C; } triangle;
triangle randTriangle();
double area(triangle t);
