gcode-estimator/Point.h
DocWibbleyWobbley 3faea3e446 Added all code
2021-06-13 20:59:41 +03:00

19 lines
273 B
C++

#ifndef GCODE_POINT_HPP_
#define GCODE_POINT_HPP_
class Point
{
public:
Point(double x = 0, double y = 0, double z = 0, double e = 0);
double x;
double y;
double z;
double e;
double get_dist(const Point& other) const;
void print();
};
#endif // GCODE_POINT_HPP_