summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBrunoSXS <trustmeiamadeveloper@gmail.com>2023-03-08 10:03:25 -0300
committerYuri Sizov <yuris@humnom.net>2023-03-13 14:38:17 +0100
commit3aa3fb8771d7ec071e6327d51c3bca75d9a487c8 (patch)
tree847c4a5753d82056510f5f31f4c605002d6e3813 /doc
parent99972500517c9bb299d61218aba455037fbc4f1b (diff)
Fix for AABB methods with wrong description
(cherry picked from commit df0de07494bae7576299bae781644ad8db7cc128)
Diffstat (limited to 'doc')
-rw-r--r--doc/classes/AABB.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/AABB.xml b/doc/classes/AABB.xml
index 2c5337eea3..b4bab2de67 100644
--- a/doc/classes/AABB.xml
+++ b/doc/classes/AABB.xml
@@ -188,7 +188,7 @@
<param index="0" name="from" type="Vector3" />
<param index="1" name="dir" type="Vector3" />
<description>
- Returns [code]true[/code] if the given ray intersects with this [AABB]. Ray length is infinite.
+ Returns the point of intersection of the given ray with this [AABB] or [code]null[/code] if there is no intersection. Ray length is infinite.
</description>
</method>
<method name="intersects_segment" qualifiers="const">
@@ -196,7 +196,7 @@
<param index="0" name="from" type="Vector3" />
<param index="1" name="to" type="Vector3" />
<description>
- Returns [code]true[/code] if the [AABB] intersects the line segment between [param from] and [param to].
+ Returns the point of intersection between [param from] and [param to] with this [AABB] or [code]null[/code] if there is no intersection.
</description>
</method>
<method name="is_equal_approx" qualifiers="const">