#ifndef POINT_H
#define POINT_H

class Point{
 public:
  Point(){}
  Point(float myx, float myy, float myz){
    x=myx;
    y=myy;
    z=myz;
  }
  Point(const Point& v){
    x=v.x;
    y=v.y;
    z=v.z;
  }
  //private:
  float x, y, z;
};
#endif

