#ifndef POINT_H_INCLUDED
#define POINT_H_INCLUDED

typedef struct {
  float x, y, z;
} float_coord;

#endif
