Add [XYZ]_CENTER conditionals

This commit is contained in:
Scott Lahteine 2016-08-30 14:15:41 -05:00
parent 7e20448a2d
commit b2e5ec85d7

View File

@ -35,11 +35,14 @@
#endif
/**
* Axis lengths
* Axis lengths and center
*/
#define X_MAX_LENGTH (X_MAX_POS - (X_MIN_POS))
#define Y_MAX_LENGTH (Y_MAX_POS - (Y_MIN_POS))
#define Z_MAX_LENGTH (Z_MAX_POS - (Z_MIN_POS))
#define X_CENTER float((X_MIN_POS + X_MAX_POS) * 0.5)
#define Y_CENTER float((Y_MIN_POS + Y_MAX_POS) * 0.5)
#define Z_CENTER float((Z_MIN_POS + Z_MAX_POS) * 0.5)
/**
* CoreXY and CoreXZ