Merge pull request #74605 from brunosxs/fix/documentation-aabb
Fix for AABB methods with wrong description
This commit is contained in:
commit
4c979ed6c0
1 changed files with 2 additions and 2 deletions
|
@ -188,7 +188,7 @@
|
||||||
<param index="0" name="from" type="Vector3" />
|
<param index="0" name="from" type="Vector3" />
|
||||||
<param index="1" name="dir" type="Vector3" />
|
<param index="1" name="dir" type="Vector3" />
|
||||||
<description>
|
<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>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="intersects_segment" qualifiers="const">
|
<method name="intersects_segment" qualifiers="const">
|
||||||
|
@ -196,7 +196,7 @@
|
||||||
<param index="0" name="from" type="Vector3" />
|
<param index="0" name="from" type="Vector3" />
|
||||||
<param index="1" name="to" type="Vector3" />
|
<param index="1" name="to" type="Vector3" />
|
||||||
<description>
|
<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>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="is_equal_approx" qualifiers="const">
|
<method name="is_equal_approx" qualifiers="const">
|
||||||
|
|
Loading…
Reference in a new issue