#ifndef TRIANGLE_H

#define TRIANGLE_H

#include "point.h"

struct triangle
{
  point vertex[3];
};

void read (triangle&);

#endif


