Commit b61ba608 authored by MagoKimbra's avatar MagoKimbra

Update vector_3.cpp

parent ecadaf77
...@@ -119,16 +119,16 @@ matrix_3x3 matrix_3x3::transpose(matrix_3x3 original) { ...@@ -119,16 +119,16 @@ matrix_3x3 matrix_3x3::transpose(matrix_3x3 original) {
void matrix_3x3::debug(const char title[]) { void matrix_3x3::debug(const char title[]) {
ECHO_LV(DB, title); ECHO_LV(DB, title);
int count = 0; int count = 0;
for(int i=0; i<3; i++) { for(int i = 0; i < 3; i++) {
for(int j=0; j<3; j++) { ECHO_S(DB);
for(int j = 0; j < 3; j++) {
if (matrix[count] >= 0.0) ECHO_C('+'); if (matrix[count] >= 0.0) ECHO_C('+');
ECHO_V(matrix[count], 6); ECHO_V(matrix[count], 6);
ECHO_C(' '); ECHO_C(' ');
count++; count++;
} }
ECHO_LM(DB, " "); ECHO_E;
} }
} }
#endif // ENABLE_AUTO_BED_LEVELING #endif // ENABLE_AUTO_BED_LEVELING
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment