Extend M217 with configurable park/raise (#12076)

This commit is contained in:
Scott Lahteine
2018-10-13 23:08:20 -05:00
committed by GitHub
parent ea13a77dcb
commit 951b25163e
87 changed files with 241 additions and 291 deletions

View File

@ -19,9 +19,9 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#pragma once
#ifndef __POINT_T__
#define __POINT_T__
#include <math.h>
/**
* @brief Cartesian Point
@ -53,5 +53,3 @@ struct point_t {
point_t(const float x, const float y) : point_t(x, y, NAN) {}
};
#endif // __POINT_T__