2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* matrix3.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2018-01-01 13:40:08 +00:00
|
|
|
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 01:10:30 +00:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2016-12-31 14:39:25 +00:00
|
|
|
|
|
|
|
#include "vector3.h"
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef MATRIX3_H
|
|
|
|
#define MATRIX3_H
|
|
|
|
|
|
|
|
#include "quat.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
@author Juan Linietsky <reduzio@gmail.com>
|
|
|
|
*/
|
2017-01-11 03:52:51 +00:00
|
|
|
class Basis {
|
2014-02-10 01:10:30 +00:00
|
|
|
public:
|
|
|
|
Vector3 elements[3];
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ const Vector3 &operator[](int axis) const {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return elements[axis];
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Vector3 &operator[](int axis) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return elements[axis];
|
|
|
|
}
|
|
|
|
|
2016-03-08 23:00:52 +00:00
|
|
|
void invert();
|
2014-02-10 01:10:30 +00:00
|
|
|
void transpose();
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
Basis inverse() const;
|
|
|
|
Basis transposed() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-05 17:31:39 +00:00
|
|
|
_FORCE_INLINE_ real_t determinant() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void from_z(const Vector3 &p_z);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
_FORCE_INLINE_ Vector3 get_axis(int p_axis) const {
|
|
|
|
// get actual basis axis (elements is transposed for performance)
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(elements[0][p_axis], elements[1][p_axis], elements[2][p_axis]);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ void set_axis(int p_axis, const Vector3 &p_value) {
|
2014-02-10 01:10:30 +00:00
|
|
|
// get actual basis axis (elements is transposed for performance)
|
2017-03-05 15:44:50 +00:00
|
|
|
elements[0][p_axis] = p_value.x;
|
|
|
|
elements[1][p_axis] = p_value.y;
|
|
|
|
elements[2][p_axis] = p_value.z;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void rotate(const Vector3 &p_axis, real_t p_phi);
|
|
|
|
Basis rotated(const Vector3 &p_axis, real_t p_phi) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-12-26 15:44:58 +00:00
|
|
|
void rotate_local(const Vector3 &p_axis, real_t p_phi);
|
|
|
|
Basis rotated_local(const Vector3 &p_axis, real_t p_phi) const;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void rotate(const Vector3 &p_euler);
|
|
|
|
Basis rotated(const Vector3 &p_euler) const;
|
2017-04-05 22:47:13 +00:00
|
|
|
|
2017-01-05 17:31:39 +00:00
|
|
|
Vector3 get_rotation() const;
|
2017-04-05 22:47:13 +00:00
|
|
|
void get_rotation_axis_angle(Vector3 &p_axis, real_t &p_angle) const;
|
2017-01-05 17:31:39 +00:00
|
|
|
|
2017-08-25 19:45:21 +00:00
|
|
|
Vector3 rotref_posscale_decomposition(Basis &rotref) const;
|
|
|
|
|
2017-08-09 02:55:52 +00:00
|
|
|
Vector3 get_euler_xyz() const;
|
|
|
|
void set_euler_xyz(const Vector3 &p_euler);
|
|
|
|
Vector3 get_euler_yxz() const;
|
|
|
|
void set_euler_yxz(const Vector3 &p_euler);
|
|
|
|
|
2017-10-10 00:51:45 +00:00
|
|
|
Quat get_quat() const;
|
|
|
|
void set_quat(const Quat &p_quat);
|
|
|
|
|
|
|
|
Vector3 get_euler() const { return get_euler_yxz(); }
|
|
|
|
void set_euler(const Vector3 &p_euler) { set_euler_yxz(p_euler); }
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-04-05 22:47:13 +00:00
|
|
|
void get_axis_angle(Vector3 &r_axis, real_t &r_angle) const;
|
|
|
|
void set_axis_angle(const Vector3 &p_axis, real_t p_phi);
|
|
|
|
|
|
|
|
void scale(const Vector3 &p_scale);
|
|
|
|
Basis scaled(const Vector3 &p_scale) const;
|
|
|
|
|
Restore the behavior of Spatial rotations recently changed in c1153f5.
That change was borne out of a confusion regarding the meaning of "local" in #14569.
Affine transformations in Spatial simply correspond to affine operations of its Transform. Such operations take place in a coordinate system that is defined by the parent Spatial. When there is no parent, they correspond to operations in the global coordinate system.
This coordinate system, which is relative to the parent, has been referred to as the local coordinate system in the docs so far, but this sloppy language has apparently confused some users, making them think that the local coordinate system refers to the one whose axes are "painted" on the Spatial node itself.
To avoid such conceptual conflations and misunderstandings in the future, the parent-relative local system is now referred to as "parent-local", and the object-relative local system is called "object-local" in the docs.
This commit adds the functionality "requested" in #14569, not by changing how rotate/scale/translate works, but by adding new rotate_object_local, scale_object_local and translate_object_local functions. Also, for completeness, there is now global_scale.
This commit also updates another part of the docs regarding the rotation property of Spatial, which also leads to confusion among some users.
2017-12-27 00:15:20 +00:00
|
|
|
void scale_local(const Vector3 &p_scale);
|
|
|
|
Basis scaled_local(const Vector3 &p_scale) const;
|
|
|
|
|
2017-09-04 10:48:14 +00:00
|
|
|
void set_scale(const Vector3 &p_scale);
|
2017-04-05 22:47:13 +00:00
|
|
|
Vector3 get_scale() const;
|
2017-09-04 10:48:14 +00:00
|
|
|
Vector3 get_signed_scale() const;
|
2017-04-05 22:47:13 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
// transposed dot products
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ real_t tdotx(const Vector3 &v) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
return elements[0][0] * v[0] + elements[1][0] * v[1] + elements[2][0] * v[2];
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ real_t tdoty(const Vector3 &v) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
return elements[0][1] * v[0] + elements[1][1] * v[1] + elements[2][1] * v[2];
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ real_t tdotz(const Vector3 &v) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
return elements[0][2] * v[0] + elements[1][2] * v[1] + elements[2][2] * v[2];
|
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-04-05 22:47:13 +00:00
|
|
|
bool is_equal_approx(const Basis &a, const Basis &b) const;
|
2016-10-18 20:50:21 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool operator==(const Basis &p_matrix) const;
|
|
|
|
bool operator!=(const Basis &p_matrix) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Vector3 xform(const Vector3 &p_vector) const;
|
|
|
|
_FORCE_INLINE_ Vector3 xform_inv(const Vector3 &p_vector) const;
|
|
|
|
_FORCE_INLINE_ void operator*=(const Basis &p_matrix);
|
|
|
|
_FORCE_INLINE_ Basis operator*(const Basis &p_matrix) const;
|
|
|
|
_FORCE_INLINE_ void operator+=(const Basis &p_matrix);
|
|
|
|
_FORCE_INLINE_ Basis operator+(const Basis &p_matrix) const;
|
|
|
|
_FORCE_INLINE_ void operator-=(const Basis &p_matrix);
|
|
|
|
_FORCE_INLINE_ Basis operator-(const Basis &p_matrix) const;
|
2016-12-31 14:39:25 +00:00
|
|
|
_FORCE_INLINE_ void operator*=(real_t p_val);
|
2017-01-11 03:52:51 +00:00
|
|
|
_FORCE_INLINE_ Basis operator*(real_t p_val) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
int get_orthogonal_index() const;
|
|
|
|
void set_orthogonal_index(int p_index);
|
|
|
|
|
2016-10-18 20:50:21 +00:00
|
|
|
bool is_orthogonal() const;
|
2017-08-25 19:45:21 +00:00
|
|
|
bool is_diagonal() const;
|
2016-10-18 20:50:21 +00:00
|
|
|
bool is_rotation() const;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
operator String() const;
|
|
|
|
|
|
|
|
/* create / set */
|
|
|
|
|
|
|
|
_FORCE_INLINE_ void set(real_t xx, real_t xy, real_t xz, real_t yx, real_t yy, real_t yz, real_t zx, real_t zy, real_t zz) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
elements[0][0] = xx;
|
|
|
|
elements[0][1] = xy;
|
|
|
|
elements[0][2] = xz;
|
|
|
|
elements[1][0] = yx;
|
|
|
|
elements[1][1] = yy;
|
|
|
|
elements[1][2] = yz;
|
|
|
|
elements[2][0] = zx;
|
|
|
|
elements[2][1] = zy;
|
|
|
|
elements[2][2] = zz;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-05-22 22:06:42 +00:00
|
|
|
_FORCE_INLINE_ void set(const Vector3 &p_x, const Vector3 &p_y, const Vector3 &p_z) {
|
|
|
|
|
|
|
|
set_axis(0, p_x);
|
|
|
|
set_axis(1, p_y);
|
|
|
|
set_axis(2, p_z);
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
_FORCE_INLINE_ Vector3 get_column(int i) const {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(elements[0][i], elements[1][i], elements[2][i]);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
_FORCE_INLINE_ Vector3 get_row(int i) const {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(elements[i][0], elements[i][1], elements[i][2]);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-12-31 14:39:25 +00:00
|
|
|
_FORCE_INLINE_ Vector3 get_main_diagonal() const {
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(elements[0][0], elements[1][1], elements[2][2]);
|
2016-12-31 14:39:25 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ void set_row(int i, const Vector3 &p_row) {
|
|
|
|
elements[i][0] = p_row.x;
|
|
|
|
elements[i][1] = p_row.y;
|
|
|
|
elements[i][2] = p_row.z;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_FORCE_INLINE_ void set_zero() {
|
|
|
|
elements[0].zero();
|
|
|
|
elements[1].zero();
|
|
|
|
elements[2].zero();
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Basis transpose_xform(const Basis &m) const {
|
2017-01-11 03:52:51 +00:00
|
|
|
return Basis(
|
2017-03-05 15:44:50 +00:00
|
|
|
elements[0].x * m[0].x + elements[1].x * m[1].x + elements[2].x * m[2].x,
|
|
|
|
elements[0].x * m[0].y + elements[1].x * m[1].y + elements[2].x * m[2].y,
|
|
|
|
elements[0].x * m[0].z + elements[1].x * m[1].z + elements[2].x * m[2].z,
|
|
|
|
elements[0].y * m[0].x + elements[1].y * m[1].x + elements[2].y * m[2].x,
|
|
|
|
elements[0].y * m[0].y + elements[1].y * m[1].y + elements[2].y * m[2].y,
|
|
|
|
elements[0].y * m[0].z + elements[1].y * m[1].z + elements[2].y * m[2].z,
|
|
|
|
elements[0].z * m[0].x + elements[1].z * m[1].x + elements[2].z * m[2].x,
|
|
|
|
elements[0].z * m[0].y + elements[1].z * m[1].y + elements[2].z * m[2].y,
|
|
|
|
elements[0].z * m[0].z + elements[1].z * m[1].z + elements[2].z * m[2].z);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-01-11 03:52:51 +00:00
|
|
|
Basis(real_t xx, real_t xy, real_t xz, real_t yx, real_t yy, real_t yz, real_t zx, real_t zy, real_t zz) {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
set(xx, xy, xz, yx, yy, yz, zx, zy, zz);
|
|
|
|
}
|
|
|
|
|
|
|
|
void orthonormalize();
|
2017-01-11 03:52:51 +00:00
|
|
|
Basis orthonormalized() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-12-31 14:39:25 +00:00
|
|
|
bool is_symmetric() const;
|
2017-01-11 03:52:51 +00:00
|
|
|
Basis diagonalize();
|
2016-12-31 14:39:25 +00:00
|
|
|
|
2017-10-10 00:51:45 +00:00
|
|
|
operator Quat() const { return get_quat(); }
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-10-10 00:51:45 +00:00
|
|
|
Basis(const Quat &p_quat) { set_quat(p_quat); };
|
|
|
|
Basis(const Vector3 &p_euler) { set_euler(p_euler); }
|
|
|
|
Basis(const Vector3 &p_axis, real_t p_phi) { set_axis_angle(p_axis, p_phi); }
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Basis(const Vector3 &row0, const Vector3 &row1, const Vector3 &row2) {
|
|
|
|
elements[0] = row0;
|
|
|
|
elements[1] = row1;
|
|
|
|
elements[2] = row2;
|
2016-12-31 14:39:25 +00:00
|
|
|
}
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
_FORCE_INLINE_ Basis() {
|
2016-03-08 23:00:52 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
elements[0][0] = 1;
|
|
|
|
elements[0][1] = 0;
|
|
|
|
elements[0][2] = 0;
|
|
|
|
elements[1][0] = 0;
|
|
|
|
elements[1][1] = 1;
|
|
|
|
elements[1][2] = 0;
|
|
|
|
elements[2][0] = 0;
|
|
|
|
elements[2][1] = 0;
|
|
|
|
elements[2][2] = 1;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ void Basis::operator*=(const Basis &p_matrix) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
set(
|
2017-03-05 15:44:50 +00:00
|
|
|
p_matrix.tdotx(elements[0]), p_matrix.tdoty(elements[0]), p_matrix.tdotz(elements[0]),
|
|
|
|
p_matrix.tdotx(elements[1]), p_matrix.tdoty(elements[1]), p_matrix.tdotz(elements[1]),
|
|
|
|
p_matrix.tdotx(elements[2]), p_matrix.tdoty(elements[2]), p_matrix.tdotz(elements[2]));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Basis Basis::operator*(const Basis &p_matrix) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
return Basis(
|
2017-03-05 15:44:50 +00:00
|
|
|
p_matrix.tdotx(elements[0]), p_matrix.tdoty(elements[0]), p_matrix.tdotz(elements[0]),
|
|
|
|
p_matrix.tdotx(elements[1]), p_matrix.tdoty(elements[1]), p_matrix.tdotz(elements[1]),
|
|
|
|
p_matrix.tdotx(elements[2]), p_matrix.tdoty(elements[2]), p_matrix.tdotz(elements[2]));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ void Basis::operator+=(const Basis &p_matrix) {
|
2016-12-31 14:39:25 +00:00
|
|
|
|
|
|
|
elements[0] += p_matrix.elements[0];
|
|
|
|
elements[1] += p_matrix.elements[1];
|
|
|
|
elements[2] += p_matrix.elements[2];
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Basis Basis::operator+(const Basis &p_matrix) const {
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
Basis ret(*this);
|
2016-12-31 14:39:25 +00:00
|
|
|
ret += p_matrix;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ void Basis::operator-=(const Basis &p_matrix) {
|
2016-12-31 14:39:25 +00:00
|
|
|
|
|
|
|
elements[0] -= p_matrix.elements[0];
|
|
|
|
elements[1] -= p_matrix.elements[1];
|
|
|
|
elements[2] -= p_matrix.elements[2];
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Basis Basis::operator-(const Basis &p_matrix) const {
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
Basis ret(*this);
|
2016-12-31 14:39:25 +00:00
|
|
|
ret -= p_matrix;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
_FORCE_INLINE_ void Basis::operator*=(real_t p_val) {
|
2016-12-31 14:39:25 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
elements[0] *= p_val;
|
|
|
|
elements[1] *= p_val;
|
|
|
|
elements[2] *= p_val;
|
2016-12-31 14:39:25 +00:00
|
|
|
}
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
_FORCE_INLINE_ Basis Basis::operator*(real_t p_val) const {
|
2016-12-31 14:39:25 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Basis ret(*this);
|
|
|
|
ret *= p_val;
|
|
|
|
return ret;
|
2016-12-31 14:39:25 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 Basis::xform(const Vector3 &p_vector) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return Vector3(
|
2017-03-05 15:44:50 +00:00
|
|
|
elements[0].dot(p_vector),
|
|
|
|
elements[1].dot(p_vector),
|
|
|
|
elements[2].dot(p_vector));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 Basis::xform_inv(const Vector3 &p_vector) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return Vector3(
|
2017-03-05 15:44:50 +00:00
|
|
|
(elements[0][0] * p_vector.x) + (elements[1][0] * p_vector.y) + (elements[2][0] * p_vector.z),
|
|
|
|
(elements[0][1] * p_vector.x) + (elements[1][1] * p_vector.y) + (elements[2][1] * p_vector.z),
|
|
|
|
(elements[0][2] * p_vector.x) + (elements[1][2] * p_vector.y) + (elements[2][2] * p_vector.z));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
real_t Basis::determinant() const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return elements[0][0] * (elements[1][1] * elements[2][2] - elements[2][1] * elements[1][2]) -
|
|
|
|
elements[1][0] * (elements[0][1] * elements[2][2] - elements[2][1] * elements[0][2]) +
|
|
|
|
elements[2][0] * (elements[0][1] * elements[1][2] - elements[1][1] * elements[0][2]);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
#endif
|