2021-09-08 18:11:12 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* plane.hpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/*************************************************************************/
|
2022-03-15 09:17:53 +00:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2021-09-08 18:11:12 +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. */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2021-09-01 03:11:10 +00:00
|
|
|
#ifndef GODOT_PLANE_HPP
|
|
|
|
#define GODOT_PLANE_HPP
|
|
|
|
|
2021-09-08 18:11:12 +00:00
|
|
|
#include <godot_cpp/classes/global_constants.hpp>
|
2021-09-01 03:11:10 +00:00
|
|
|
#include <godot_cpp/core/math.hpp>
|
|
|
|
#include <godot_cpp/variant/vector3.hpp>
|
|
|
|
|
|
|
|
namespace godot {
|
|
|
|
|
|
|
|
class Plane {
|
2022-02-09 10:36:22 +00:00
|
|
|
_FORCE_INLINE_ GDNativeTypePtr _native_ptr() const { return (void *)this; }
|
|
|
|
|
|
|
|
friend class Variant;
|
2021-09-01 03:11:10 +00:00
|
|
|
|
2022-02-09 10:36:22 +00:00
|
|
|
public:
|
2021-09-01 03:11:10 +00:00
|
|
|
Vector3 normal;
|
|
|
|
real_t d = 0;
|
|
|
|
|
|
|
|
void set_normal(const Vector3 &p_normal);
|
2022-02-09 10:36:22 +00:00
|
|
|
inline Vector3 get_normal() const { return normal; }; /// Point is coplanar, CMP_EPSILON for precision
|
2021-09-01 03:11:10 +00:00
|
|
|
|
|
|
|
void normalize();
|
|
|
|
Plane normalized() const;
|
|
|
|
|
|
|
|
/* Plane-Point operations */
|
|
|
|
|
|
|
|
inline Vector3 center() const { return normal * d; }
|
|
|
|
Vector3 get_any_perpendicular_normal() const;
|
|
|
|
|
|
|
|
inline bool is_point_over(const Vector3 &p_point) const; ///< Point is over plane
|
|
|
|
inline real_t distance_to(const Vector3 &p_point) const;
|
|
|
|
inline bool has_point(const Vector3 &p_point, real_t _epsilon = CMP_EPSILON) const;
|
|
|
|
|
|
|
|
/* intersections */
|
|
|
|
|
|
|
|
bool intersect_3(const Plane &p_plane1, const Plane &p_plane2, Vector3 *r_result = nullptr) const;
|
|
|
|
bool intersects_ray(const Vector3 &p_from, const Vector3 &p_dir, Vector3 *p_intersection) const;
|
|
|
|
bool intersects_segment(const Vector3 &p_begin, const Vector3 &p_end, Vector3 *p_intersection) const;
|
|
|
|
|
|
|
|
inline Vector3 project(const Vector3 &p_point) const {
|
|
|
|
return p_point - normal * distance_to(p_point);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* misc */
|
|
|
|
|
|
|
|
Plane operator-() const { return Plane(-normal, -d); }
|
|
|
|
bool is_equal_approx(const Plane &p_plane) const;
|
|
|
|
bool is_equal_approx_any_side(const Plane &p_plane) const;
|
|
|
|
|
|
|
|
inline bool operator==(const Plane &p_plane) const;
|
|
|
|
inline bool operator!=(const Plane &p_plane) const;
|
|
|
|
operator String() const;
|
|
|
|
|
|
|
|
inline Plane() {}
|
|
|
|
inline Plane(real_t p_a, real_t p_b, real_t p_c, real_t p_d) :
|
|
|
|
normal(p_a, p_b, p_c),
|
|
|
|
d(p_d) {}
|
|
|
|
|
|
|
|
inline Plane(const Vector3 &p_normal, real_t p_d);
|
|
|
|
inline Plane(const Vector3 &p_point, const Vector3 &p_normal);
|
|
|
|
inline Plane(const Vector3 &p_point1, const Vector3 &p_point2, const Vector3 &p_point3, ClockDirection p_dir = CLOCKWISE);
|
|
|
|
};
|
|
|
|
|
|
|
|
bool Plane::is_point_over(const Vector3 &p_point) const {
|
|
|
|
return (normal.dot(p_point) > d);
|
|
|
|
}
|
|
|
|
|
|
|
|
real_t Plane::distance_to(const Vector3 &p_point) const {
|
|
|
|
return (normal.dot(p_point) - d);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Plane::has_point(const Vector3 &p_point, real_t _epsilon) const {
|
|
|
|
real_t dist = normal.dot(p_point) - d;
|
|
|
|
dist = Math::abs(dist);
|
|
|
|
return (dist <= _epsilon);
|
|
|
|
}
|
|
|
|
|
|
|
|
Plane::Plane(const Vector3 &p_normal, real_t p_d) :
|
|
|
|
normal(p_normal),
|
|
|
|
d(p_d) {
|
|
|
|
}
|
|
|
|
|
|
|
|
Plane::Plane(const Vector3 &p_point, const Vector3 &p_normal) :
|
|
|
|
normal(p_normal),
|
|
|
|
d(p_normal.dot(p_point)) {
|
|
|
|
}
|
|
|
|
|
|
|
|
Plane::Plane(const Vector3 &p_point1, const Vector3 &p_point2, const Vector3 &p_point3, ClockDirection p_dir) {
|
|
|
|
if (p_dir == CLOCKWISE) {
|
|
|
|
normal = (p_point1 - p_point3).cross(p_point1 - p_point2);
|
|
|
|
} else {
|
|
|
|
normal = (p_point1 - p_point2).cross(p_point1 - p_point3);
|
|
|
|
}
|
|
|
|
|
|
|
|
normal.normalize();
|
|
|
|
d = normal.dot(p_point1);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Plane::operator==(const Plane &p_plane) const {
|
|
|
|
return normal == p_plane.normal && d == p_plane.d;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Plane::operator!=(const Plane &p_plane) const {
|
|
|
|
return normal != p_plane.normal || d != p_plane.d;
|
|
|
|
}
|
|
|
|
} // namespace godot
|
|
|
|
|
|
|
|
#endif // GODOT_PLANE_HPP
|