2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* vector3.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. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef VECTOR3_H
|
|
|
|
#define VECTOR3_H
|
|
|
|
|
|
|
|
#include "math_defs.h"
|
|
|
|
#include "math_funcs.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "typedefs.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "ustring.h"
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
class Basis;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
struct Vector3 {
|
|
|
|
|
|
|
|
enum Axis {
|
|
|
|
AXIS_X,
|
|
|
|
AXIS_Y,
|
2015-07-14 23:59:35 +00:00
|
|
|
AXIS_Z,
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
union {
|
|
|
|
struct {
|
|
|
|
real_t x;
|
|
|
|
real_t y;
|
|
|
|
real_t z;
|
|
|
|
};
|
2015-07-14 23:59:35 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
real_t coord[3];
|
|
|
|
};
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ const real_t &operator[](int p_axis) const {
|
2015-07-14 23:59:35 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return coord[p_axis];
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ real_t &operator[](int p_axis) {
|
2015-07-14 23:59:35 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return coord[p_axis];
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_axis(int p_axis, real_t p_value);
|
2016-10-01 18:54:31 +00:00
|
|
|
real_t get_axis(int p_axis) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-01 18:54:31 +00:00
|
|
|
int min_axis() const;
|
|
|
|
int max_axis() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-01 18:54:31 +00:00
|
|
|
_FORCE_INLINE_ real_t length() const;
|
|
|
|
_FORCE_INLINE_ real_t length_squared() const;
|
2015-07-14 23:59:35 +00:00
|
|
|
|
2016-10-01 18:54:31 +00:00
|
|
|
_FORCE_INLINE_ void normalize();
|
|
|
|
_FORCE_INLINE_ Vector3 normalized() const;
|
2017-03-23 17:27:00 +00:00
|
|
|
_FORCE_INLINE_ bool is_normalized() const;
|
2016-10-01 18:54:31 +00:00
|
|
|
_FORCE_INLINE_ Vector3 inverse() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
_FORCE_INLINE_ void zero();
|
|
|
|
|
2017-06-30 18:47:17 +00:00
|
|
|
void snap(Vector3 p_val);
|
|
|
|
Vector3 snapped(Vector3 p_val) const;
|
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);
|
|
|
|
Vector3 rotated(const Vector3 &p_axis, real_t p_phi) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-01 18:54:31 +00:00
|
|
|
/* Static Methods between 2 vector3s */
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Vector3 linear_interpolate(const Vector3 &p_b, real_t p_t) const;
|
|
|
|
Vector3 cubic_interpolate(const Vector3 &p_b, const Vector3 &p_pre_a, const Vector3 &p_post_b, real_t p_t) const;
|
|
|
|
Vector3 cubic_interpolaten(const Vector3 &p_b, const Vector3 &p_pre_a, const Vector3 &p_post_b, real_t p_t) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Vector3 cross(const Vector3 &p_b) const;
|
|
|
|
_FORCE_INLINE_ real_t dot(const Vector3 &p_b) const;
|
|
|
|
_FORCE_INLINE_ Basis outer(const Vector3 &p_b) const;
|
2017-01-11 03:52:51 +00:00
|
|
|
_FORCE_INLINE_ Basis to_diagonal_matrix() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-01 18:54:31 +00:00
|
|
|
_FORCE_INLINE_ Vector3 abs() const;
|
|
|
|
_FORCE_INLINE_ Vector3 floor() const;
|
2017-07-15 04:23:10 +00:00
|
|
|
_FORCE_INLINE_ Vector3 sign() const;
|
2016-10-01 18:54:31 +00:00
|
|
|
_FORCE_INLINE_ Vector3 ceil() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ real_t distance_to(const Vector3 &p_b) const;
|
|
|
|
_FORCE_INLINE_ real_t distance_squared_to(const Vector3 &p_b) const;
|
2014-09-03 02:13:40 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ real_t angle_to(const Vector3 &p_b) const;
|
2014-09-03 02:13:40 +00:00
|
|
|
|
2017-08-11 19:10:05 +00:00
|
|
|
_FORCE_INLINE_ Vector3 slide(const Vector3 &p_normal) const;
|
|
|
|
_FORCE_INLINE_ Vector3 bounce(const Vector3 &p_normal) const;
|
|
|
|
_FORCE_INLINE_ Vector3 reflect(const Vector3 &p_normal) const;
|
2014-09-03 02:13:40 +00:00
|
|
|
|
2016-10-01 18:54:31 +00:00
|
|
|
/* Operators */
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Vector3 &operator+=(const Vector3 &p_v);
|
|
|
|
_FORCE_INLINE_ Vector3 operator+(const Vector3 &p_v) const;
|
|
|
|
_FORCE_INLINE_ Vector3 &operator-=(const Vector3 &p_v);
|
|
|
|
_FORCE_INLINE_ Vector3 operator-(const Vector3 &p_v) const;
|
|
|
|
_FORCE_INLINE_ Vector3 &operator*=(const Vector3 &p_v);
|
|
|
|
_FORCE_INLINE_ Vector3 operator*(const Vector3 &p_v) const;
|
|
|
|
_FORCE_INLINE_ Vector3 &operator/=(const Vector3 &p_v);
|
|
|
|
_FORCE_INLINE_ Vector3 operator/(const Vector3 &p_v) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Vector3 &operator*=(real_t p_scalar);
|
2016-10-01 18:54:31 +00:00
|
|
|
_FORCE_INLINE_ Vector3 operator*(real_t p_scalar) const;
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Vector3 &operator/=(real_t p_scalar);
|
2016-10-01 18:54:31 +00:00
|
|
|
_FORCE_INLINE_ Vector3 operator/(real_t p_scalar) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-01 18:54:31 +00:00
|
|
|
_FORCE_INLINE_ Vector3 operator-() const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ bool operator==(const Vector3 &p_v) const;
|
|
|
|
_FORCE_INLINE_ bool operator!=(const Vector3 &p_v) const;
|
|
|
|
_FORCE_INLINE_ bool operator<(const Vector3 &p_v) const;
|
|
|
|
_FORCE_INLINE_ bool operator<=(const Vector3 &p_v) const;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
operator String() const;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Vector3() { x = y = z = 0; }
|
|
|
|
_FORCE_INLINE_ Vector3(real_t p_x, real_t p_y, real_t p_z) {
|
|
|
|
x = p_x;
|
|
|
|
y = p_y;
|
|
|
|
z = p_z;
|
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef VECTOR3_IMPL_OVERRIDE
|
|
|
|
|
|
|
|
#include "vector3_inline.h"
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2016-12-31 14:39:25 +00:00
|
|
|
#include "matrix3.h"
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 Vector3::cross(const Vector3 &p_b) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 ret(
|
|
|
|
(y * p_b.z) - (z * p_b.y),
|
|
|
|
(z * p_b.x) - (x * p_b.z),
|
|
|
|
(x * p_b.y) - (y * p_b.x));
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-10-01 18:54:31 +00:00
|
|
|
return ret;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-10-01 18:54:31 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
real_t Vector3::dot(const Vector3 &p_b) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return x * p_b.x + y * p_b.y + z * p_b.z;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Basis Vector3::outer(const Vector3 &p_b) const {
|
|
|
|
|
|
|
|
Vector3 row0(x * p_b.x, x * p_b.y, x * p_b.z);
|
|
|
|
Vector3 row1(y * p_b.x, y * p_b.y, y * p_b.z);
|
|
|
|
Vector3 row2(z * p_b.x, z * p_b.y, z * p_b.z);
|
2016-12-31 14:39:25 +00:00
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
return Basis(row0, row1, row2);
|
2016-12-31 14:39:25 +00:00
|
|
|
}
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
Basis Vector3::to_diagonal_matrix() const {
|
|
|
|
return Basis(x, 0, 0,
|
2017-03-05 15:44:50 +00:00
|
|
|
0, y, 0,
|
|
|
|
0, 0, z);
|
2016-12-31 14:39:25 +00:00
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector3 Vector3::abs() const {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(Math::abs(x), Math::abs(y), Math::abs(z));
|
2015-07-14 23:59:35 +00:00
|
|
|
}
|
|
|
|
|
2017-07-15 04:23:10 +00:00
|
|
|
Vector3 Vector3::sign() const {
|
|
|
|
|
|
|
|
return Vector3(SGN(x), SGN(y), SGN(z));
|
|
|
|
}
|
|
|
|
|
2015-07-14 23:59:35 +00:00
|
|
|
Vector3 Vector3::floor() const {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(Math::floor(x), Math::floor(y), Math::floor(z));
|
2015-07-14 23:59:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Vector3 Vector3::ceil() const {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(Math::ceil(x), Math::ceil(y), Math::ceil(z));
|
2015-07-14 23:59:35 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 Vector3::linear_interpolate(const Vector3 &p_b, real_t p_t) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return Vector3(
|
2017-03-05 15:44:50 +00:00
|
|
|
x + (p_t * (p_b.x - x)),
|
|
|
|
y + (p_t * (p_b.y - y)),
|
|
|
|
z + (p_t * (p_b.z - z)));
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
real_t Vector3::distance_to(const Vector3 &p_b) const {
|
2016-10-01 18:54:31 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return (p_b - *this).length();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-10-01 19:20:09 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
real_t Vector3::distance_squared_to(const Vector3 &p_b) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return (p_b - *this).length_squared();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
real_t Vector3::angle_to(const Vector3 &p_b) const {
|
2016-10-01 19:20:09 +00:00
|
|
|
|
2017-03-24 17:03:33 +00:00
|
|
|
return Math::atan2(cross(p_b).length(), dot(p_b));
|
2016-10-01 19:20:09 +00:00
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
/* Operators */
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 &Vector3::operator+=(const Vector3 &p_v) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
x += p_v.x;
|
|
|
|
y += p_v.y;
|
|
|
|
z += p_v.z;
|
2016-10-01 18:54:31 +00:00
|
|
|
return *this;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-10-01 18:54:31 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 Vector3::operator+(const Vector3 &p_v) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(x + p_v.x, y + p_v.y, z + p_v.z);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 &Vector3::operator-=(const Vector3 &p_v) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
x -= p_v.x;
|
|
|
|
y -= p_v.y;
|
|
|
|
z -= p_v.z;
|
2016-10-01 18:54:31 +00:00
|
|
|
return *this;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 Vector3::operator-(const Vector3 &p_v) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(x - p_v.x, y - p_v.y, z - p_v.z);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 &Vector3::operator*=(const Vector3 &p_v) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
x *= p_v.x;
|
|
|
|
y *= p_v.y;
|
|
|
|
z *= p_v.z;
|
2016-10-01 18:54:31 +00:00
|
|
|
return *this;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 Vector3::operator*(const Vector3 &p_v) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(x * p_v.x, y * p_v.y, z * p_v.z);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 &Vector3::operator/=(const Vector3 &p_v) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
x /= p_v.x;
|
|
|
|
y /= p_v.y;
|
|
|
|
z /= p_v.z;
|
2016-10-01 18:54:31 +00:00
|
|
|
return *this;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-10-01 18:54:31 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 Vector3::operator/(const Vector3 &p_v) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(x / p_v.x, y / p_v.y, z / p_v.z);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 &Vector3::operator*=(real_t p_scalar) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
x *= p_scalar;
|
|
|
|
y *= p_scalar;
|
|
|
|
z *= p_scalar;
|
2016-10-01 18:54:31 +00:00
|
|
|
return *this;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Vector3 operator*(real_t p_scalar, const Vector3 &p_vec) {
|
2016-10-01 18:54:31 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
return p_vec * p_scalar;
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector3 Vector3::operator*(real_t p_scalar) const {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(x * p_scalar, y * p_scalar, z * p_scalar);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 &Vector3::operator/=(real_t p_scalar) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
x /= p_scalar;
|
|
|
|
y /= p_scalar;
|
|
|
|
z /= p_scalar;
|
2016-10-01 18:54:31 +00:00
|
|
|
return *this;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Vector3 Vector3::operator/(real_t p_scalar) const {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(x / p_scalar, y / p_scalar, z / p_scalar);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Vector3 Vector3::operator-() const {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(-x, -y, -z);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool Vector3::operator==(const Vector3 &p_v) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return (x == p_v.x && y == p_v.y && z == p_v.z);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool Vector3::operator!=(const Vector3 &p_v) const {
|
|
|
|
return (x != p_v.x || y != p_v.y || z != p_v.z);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool Vector3::operator<(const Vector3 &p_v) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (x == p_v.x) {
|
|
|
|
if (y == p_v.y)
|
|
|
|
return z < p_v.z;
|
2014-02-10 01:10:30 +00:00
|
|
|
else
|
2017-03-05 15:44:50 +00:00
|
|
|
return y < p_v.y;
|
2016-10-01 18:54:31 +00:00
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
return x < p_v.x;
|
2016-10-01 18:54:31 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool Vector3::operator<=(const Vector3 &p_v) const {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (x == p_v.x) {
|
|
|
|
if (y == p_v.y)
|
|
|
|
return z <= p_v.z;
|
2014-02-10 01:10:30 +00:00
|
|
|
else
|
2017-03-05 15:44:50 +00:00
|
|
|
return y < p_v.y;
|
2016-10-01 18:54:31 +00:00
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
return x < p_v.x;
|
2016-10-01 18:54:31 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ Vector3 vec3_cross(const Vector3 &p_a, const Vector3 &p_b) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return p_a.cross(p_b);
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_FORCE_INLINE_ real_t vec3_dot(const Vector3 &p_a, const Vector3 &p_b) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return p_a.dot(p_b);
|
|
|
|
}
|
|
|
|
|
|
|
|
real_t Vector3::length() const {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
real_t x2 = x * x;
|
|
|
|
real_t y2 = y * y;
|
|
|
|
real_t z2 = z * z;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Math::sqrt(x2 + y2 + z2);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-10-01 18:54:31 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
real_t Vector3::length_squared() const {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
real_t x2 = x * x;
|
|
|
|
real_t y2 = y * y;
|
|
|
|
real_t z2 = z * z;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return x2 + y2 + z2;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Vector3::normalize() {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
real_t l = length();
|
|
|
|
if (l == 0) {
|
|
|
|
x = y = z = 0;
|
2016-10-01 18:54:31 +00:00
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
x /= l;
|
|
|
|
y /= l;
|
|
|
|
z /= l;
|
2016-10-01 18:54:31 +00:00
|
|
|
}
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2016-10-01 18:54:31 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector3 Vector3::normalized() const {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Vector3 v = *this;
|
2016-10-01 18:54:31 +00:00
|
|
|
v.normalize();
|
|
|
|
return v;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-23 17:27:00 +00:00
|
|
|
bool Vector3::is_normalized() const {
|
2017-04-05 22:47:13 +00:00
|
|
|
// use length_squared() instead of length() to avoid sqrt(), makes it more stringent.
|
|
|
|
return Math::is_equal_approx(length_squared(), 1.0);
|
2017-03-23 17:27:00 +00:00
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector3 Vector3::inverse() const {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return Vector3(1.0 / x, 1.0 / y, 1.0 / z);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Vector3::zero() {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
x = y = z = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-31 15:25:09 +00:00
|
|
|
// slide returns the component of the vector along the given plane, specified by its normal vector.
|
2017-08-11 19:10:05 +00:00
|
|
|
Vector3 Vector3::slide(const Vector3 &p_normal) const {
|
2017-04-05 22:47:13 +00:00
|
|
|
#ifdef MATH_CHECKS
|
2017-08-11 19:10:05 +00:00
|
|
|
ERR_FAIL_COND_V(p_normal.is_normalized() == false, Vector3());
|
2017-03-31 15:25:09 +00:00
|
|
|
#endif
|
2017-08-11 19:10:05 +00:00
|
|
|
return *this - p_normal * this->dot(p_normal);
|
2014-09-03 02:13:40 +00:00
|
|
|
}
|
2016-10-01 18:54:31 +00:00
|
|
|
|
2017-08-11 19:10:05 +00:00
|
|
|
Vector3 Vector3::bounce(const Vector3 &p_normal) const {
|
|
|
|
return -reflect(p_normal);
|
2017-03-31 15:25:09 +00:00
|
|
|
}
|
2014-09-03 02:13:40 +00:00
|
|
|
|
2017-08-11 19:10:05 +00:00
|
|
|
Vector3 Vector3::reflect(const Vector3 &p_normal) const {
|
2017-04-05 22:47:13 +00:00
|
|
|
#ifdef MATH_CHECKS
|
2017-08-11 19:10:05 +00:00
|
|
|
ERR_FAIL_COND_V(p_normal.is_normalized() == false, Vector3());
|
2017-03-31 15:25:09 +00:00
|
|
|
#endif
|
2017-08-11 19:10:05 +00:00
|
|
|
return 2.0 * p_normal * this->dot(p_normal) - *this;
|
2014-09-03 02:13:40 +00:00
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // VECTOR3_H
|