BlinkenArea - GitList
Repositories
Blog
Wiki
dxfngc
Code
Commits
Branches
Tags
Search
Tree:
b44cc2a
Branches
Tags
master
dxfngc
src
point.h
implement joining and improving paths
Stefan Schuermans
commited
b44cc2a
at 2013-01-26 23:15:34
point.h
Blame
History
Raw
/* drawing (DXF) to G-code (NGC) converter * Copyright 2013 Stefan Schuermans <stefan@schuermans.info> * Copyleft: CC-BY-SA http://creativecommons.org/licenses/by-sa/3.0/ */ #ifndef POINT_H #define POINT_H /// point in 2D space class Point { public: Point(); Point(double x, double y); double abs_sq() const; double abs() const; Point operator-() const; Point operator+(const Point &that) const; Point operator-(const Point &that) const; Point operator*(double factor) const; Point operator/(double factor) const; Point &operator+=(const Point &that); Point &operator-=(const Point &that); Point &operator*=(double factor); Point &operator/=(double factor); /** * @brief check if point is equal to another one * @param[in] that other point * @param[in] eqDist maximum distance of two points to be considered equal */ bool equals(const Point &that, double eqDist) const; double mX; ///< x coordinate double mY; ///< y coordinate }; #endif // #ifndef POINT_H