diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2022-10-05 22:00:15 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2022-10-05 23:11:02 -0500 |
commit | 97d232c11d38f94e6719c83aa31771201c85430c (patch) | |
tree | b5da52b2de569469f36b25274f2fa3d42a3f1658 /core/math/aabb.cpp | |
parent | ea9bb98f26be8212245f6ff796617901a8b9f3f6 (diff) |
Enhancements to includes in core data structures
Diffstat (limited to 'core/math/aabb.cpp')
-rw-r--r-- | core/math/aabb.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/math/aabb.cpp b/core/math/aabb.cpp index 4c89be7f4d..483b0d10ec 100644 --- a/core/math/aabb.cpp +++ b/core/math/aabb.cpp @@ -403,6 +403,7 @@ Variant AABB::intersects_segment_bind(const Vector3 &p_from, const Vector3 &p_to } return Variant(); } + Variant AABB::intersects_ray_bind(const Vector3 &p_from, const Vector3 &p_dir) const { Vector3 inters; if (intersects_ray(p_from, p_dir, &inters)) { |