summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-11-10 12:12:41 -0600
committerThaddeus Crews <repiteo@outlook.com>2024-11-10 12:12:41 -0600
commit33ad26dad52d631b5df2a9efc25a744ecf344643 (patch)
treeb8548f798440dab17200238758bae4c658831424
parent511149e2a0ef136bb48c69a70c4a3f22b9317fb1 (diff)
parentba30a8707acb6912ea4d8b990c3f8085eb0854f4 (diff)
downloadredot-engine-33ad26dad52d631b5df2a9efc25a744ecf344643.tar.gz
Merge pull request #98748 from tetrapod00/fix-aabb-docs
Docs: Fix AABB is_finite() and is_equal_approx()
-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 188d9652a8..ae2de055cb 100644
--- a/doc/classes/AABB.xml
+++ b/doc/classes/AABB.xml
@@ -326,13 +326,13 @@
<return type="bool" />
<param index="0" name="aabb" type="AABB" />
<description>
- Returns [code]true[/code] if this bounding box and [param aabb] are approximately equal, by calling [method Vector2.is_equal_approx] on the [member position] and the [member size].
+ Returns [code]true[/code] if this bounding box and [param aabb] are approximately equal, by calling [method Vector3.is_equal_approx] on the [member position] and the [member size].
</description>
</method>
<method name="is_finite" qualifiers="const">
<return type="bool" />
<description>
- Returns [code]true[/code] if this bounding box's values are finite, by calling [method Vector2.is_finite] on the [member position] and the [member size].
+ Returns [code]true[/code] if this bounding box's values are finite, by calling [method Vector3.is_finite] on the [member position] and the [member size].
</description>
</method>
<method name="merge" qualifiers="const">