Fewer includes of vector_3.h

This commit is contained in:
Scott Lahteine
2018-05-01 07:05:18 -05:00
parent 9312636ee4
commit d7b699ec34
6 changed files with 9 additions and 16 deletions

View File

@@ -75,10 +75,4 @@ void serial_spaces(uint8_t count) { count *= (PROPORTIONAL_FONT_RATIO); while (c
print_xyz(prefix, suffix, xyz[X_AXIS], xyz[Y_AXIS], xyz[Z_AXIS]);
}
#if HAS_ABL
void print_xyz(const char* prefix, const char* suffix, const vector_3 &xyz) {
print_xyz(prefix, suffix, xyz.x, xyz.y, xyz.z);
}
#endif
#endif