Firmware2/Marlin/src/libs/vector_3.cpp

153 lines
4.8 KiB
C++
Raw Normal View History

/**
2016-03-24 19:01:20 +01:00
* Marlin 3D Printer Firmware
2020-02-03 15:00:57 +01:00
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
2016-03-24 19:01:20 +01:00
*
* Based on Sprinter and grbl.
2019-06-28 06:57:50 +02:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
2016-03-24 19:01:20 +01:00
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2020-07-23 05:20:14 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2016-03-24 19:01:20 +01:00
*
*/
/**
2017-11-18 09:08:03 +01:00
* vector_3.cpp - Vector library for bed leveling
* Copyright (c) 2012 Lars Brubaker. All right reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
2017-09-06 13:28:32 +02:00
#include "../inc/MarlinConfig.h"
2018-05-01 14:05:18 +02:00
#if ABL_PLANAR || ENABLED(AUTO_BED_LEVELING_UBL)
2017-09-06 13:28:32 +02:00
#include "vector_3.h"
2017-09-06 13:28:32 +02:00
#include <math.h>
2019-09-29 11:25:39 +02:00
/**
* vector_3
*/
vector_3 vector_3::cross(const vector_3 &left, const vector_3 &right) {
return vector_3(left.y * right.z - left.z * right.y, // YZ cross
left.z * right.x - left.x * right.z, // ZX cross
left.x * right.y - left.y * right.x); // XY cross
}
vector_3 vector_3::get_normal() const {
2019-09-29 11:25:39 +02:00
vector_3 normalized = *this;
normalized.normalize();
return normalized;
}
float vector_3::magnitude() const { return SQRT(sq(x) + sq(y) + sq(z)); }
void vector_3::normalize() { *this *= RSQRT(sq(x) + sq(y) + sq(z)); }
2019-09-29 11:25:39 +02:00
// Apply a rotation to the matrix
void vector_3::apply_rotation(const matrix_3x3 &matrix) {
2019-09-29 11:25:39 +02:00
const float _x = x, _y = y, _z = z;
*this = { matrix.vectors[0].x * _x + matrix.vectors[1].x * _y + matrix.vectors[2].x * _z,
matrix.vectors[0].y * _x + matrix.vectors[1].y * _y + matrix.vectors[2].y * _z,
matrix.vectors[0].z * _x + matrix.vectors[1].z * _y + matrix.vectors[2].z * _z };
}
2021-09-27 20:46:42 +02:00
void vector_3::debug(FSTR_P const title) {
SERIAL_ECHOF(title);
SERIAL_ECHOPAIR_F_P(SP_X_STR, x, 6);
SERIAL_ECHOPAIR_F_P(SP_Y_STR, y, 6);
SERIAL_ECHOLNPAIR_F_P(SP_Z_STR, z, 6);
}
2019-09-29 11:25:39 +02:00
/**
* matrix_3x3
*/
void matrix_3x3::apply_rotation_xyz(float &_x, float &_y, float &_z) {
vector_3 vec = vector_3(_x, _y, _z); vec.apply_rotation(*this);
2019-09-29 11:25:39 +02:00
_x = vec.x; _y = vec.y; _z = vec.z;
}
// Reset to identity. No rotate or translate.
void matrix_3x3::set_to_identity() {
2020-03-14 05:18:16 +01:00
LOOP_L_N(i, 3)
LOOP_L_N(j, 3)
2019-09-29 11:25:39 +02:00
vectors[i][j] = float(i == j);
}
2019-09-29 11:25:39 +02:00
// Create a matrix from 3 vector_3 inputs
matrix_3x3 matrix_3x3::create_from_rows(const vector_3 &row_0, const vector_3 &row_1, const vector_3 &row_2) {
2021-09-27 20:46:42 +02:00
//row_0.debug(F("row_0"));
//row_1.debug(F("row_1"));
//row_2.debug(F("row_2"));
matrix_3x3 new_matrix;
new_matrix.vectors[0] = row_0;
new_matrix.vectors[1] = row_1;
new_matrix.vectors[2] = row_2;
2021-09-27 20:46:42 +02:00
//new_matrix.debug(F("new_matrix"));
return new_matrix;
}
2019-09-29 11:25:39 +02:00
// Create a matrix rotated to point towards a target
matrix_3x3 matrix_3x3::create_look_at(const vector_3 &target) {
2019-09-29 11:25:39 +02:00
const vector_3 z_row = target.get_normal(),
x_row = vector_3(1, 0, -target.x / target.z).get_normal(),
y_row = vector_3::cross(z_row, x_row).get_normal();
2021-09-27 20:46:42 +02:00
// x_row.debug(F("x_row"));
// y_row.debug(F("y_row"));
// z_row.debug(F("z_row"));
// create the matrix already correctly transposed
matrix_3x3 rot = matrix_3x3::create_from_rows(x_row, y_row, z_row);
2021-09-27 20:46:42 +02:00
// rot.debug(F("rot"));
return rot;
}
2019-09-29 11:25:39 +02:00
// Get a transposed copy of the matrix
matrix_3x3 matrix_3x3::transpose(const matrix_3x3 &original) {
matrix_3x3 new_matrix;
2020-03-14 05:18:16 +01:00
LOOP_L_N(i, 3)
LOOP_L_N(j, 3)
2019-09-29 11:25:39 +02:00
new_matrix.vectors[i][j] = original.vectors[j][i];
return new_matrix;
}
2021-09-27 20:46:42 +02:00
void matrix_3x3::debug(FSTR_P const title) {
if (title) SERIAL_ECHOLNF(title);
2020-03-14 05:18:16 +01:00
LOOP_L_N(i, 3) {
LOOP_L_N(j, 3) {
2019-09-29 11:25:39 +02:00
if (vectors[i][j] >= 0.0) SERIAL_CHAR('+');
SERIAL_ECHO_F(vectors[i][j], 6);
SERIAL_CHAR(' ');
}
2017-06-09 17:51:23 +02:00
SERIAL_EOL();
}
}
2019-02-25 03:29:03 +01:00
#endif // HAS_ABL_OR_UBL