2017-09-12 20:42:36 +00:00
<?xml version="1.0" encoding="UTF-8" ?>
2022-02-14 13:18:53 +00:00
<class name= "AABB" version= "4.0" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 20:42:36 +00:00
<brief_description >
Axis-Aligned Bounding Box.
</brief_description>
<description >
2020-09-21 12:27:50 +00:00
[AABB] consists of a position, a size, and several utility functions. It is typically used for fast overlap tests.
It uses floating-point coordinates. The 2D counterpart to [AABB] is [Rect2].
2020-04-06 08:34:18 +00:00
Negative values for [member size] are not supported and will not work for most methods. Use [method abs] to get an AABB with a positive size.
2020-09-21 12:27:50 +00:00
[b]Note:[/b] Unlike [Rect2], [AABB] does not have a variant that uses integer coordinates.
2017-09-12 20:42:36 +00:00
</description>
<tutorials >
2021-11-15 09:43:07 +00:00
<link title= "Math documentation index" > $DOCS_URL/tutorials/math/index.html</link>
<link title= "Vector math" > $DOCS_URL/tutorials/math/vector_math.html</link>
<link title= "Advanced vector math" > $DOCS_URL/tutorials/math/vectors_advanced.html</link>
2017-09-12 20:42:36 +00:00
</tutorials>
2021-09-21 02:49:02 +00:00
<constructors >
<constructor name= "AABB" >
2021-07-30 13:28:05 +00:00
<return type= "AABB" />
2020-11-09 16:46:03 +00:00
<description >
Constructs a default-initialized [AABB] with default (zero) values of [member position] and [member size].
</description>
2021-09-21 02:49:02 +00:00
</constructor>
<constructor name= "AABB" >
2021-07-30 13:28:05 +00:00
<return type= "AABB" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "from" type= "AABB" />
2020-11-09 16:46:03 +00:00
<description >
Constructs an [AABB] as a copy of the given [AABB].
</description>
2021-09-21 02:49:02 +00:00
</constructor>
<constructor name= "AABB" >
2021-07-30 13:28:05 +00:00
<return type= "AABB" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "position" type= "Vector3" />
<param index= "1" name= "size" type= "Vector3" />
2017-09-12 20:42:36 +00:00
<description >
2020-07-21 18:07:00 +00:00
Constructs an [AABB] from a position and size.
</description>
2021-09-21 02:49:02 +00:00
</constructor>
</constructors>
<methods >
2021-03-18 13:44:42 +00:00
<method name= "abs" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "AABB" />
2020-07-21 18:07:00 +00:00
<description >
Returns an AABB with equivalent position and size, modified so that the most-negative corner is the origin and the size is positive.
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "encloses" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "with" type= "AABB" />
2017-09-12 20:42:36 +00:00
<description >
2019-03-29 22:37:35 +00:00
Returns [code]true[/code] if this [AABB] completely encloses another one.
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "expand" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "AABB" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "to_point" type= "Vector3" />
2017-09-12 20:42:36 +00:00
<description >
2021-11-11 10:31:30 +00:00
Returns a copy of this [AABB] expanded to include a given point.
[b]Example:[/b]
[codeblocks]
[gdscript]
# position (-3, 2, 0), size (1, 1, 1)
var box = AABB(Vector3(-3, 2, 0), Vector3(1, 1, 1))
# position (-3, -1, 0), size (3, 4, 2), so we fit both the original AABB and Vector3(0, -1, 2)
var box2 = box.expand(Vector3(0, -1, 2))
[/gdscript]
[csharp]
// position (-3, 2, 0), size (1, 1, 1)
2022-12-07 15:11:39 +00:00
var box = new Aabb(new Vector3(-3, 2, 0), new Vector3(1, 1, 1));
2021-11-11 10:31:30 +00:00
// position (-3, -1, 0), size (3, 4, 2), so we fit both the original AABB and Vector3(0, -1, 2)
var box2 = box.Expand(new Vector3(0, -1, 2));
[/csharp]
[/codeblocks]
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-09-20 18:48:52 +00:00
<method name= "get_center" qualifiers= "const" >
<return type= "Vector3" />
<description >
Returns the center of the [AABB], which is equal to [member position] + ([member size] / 2).
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "get_endpoint" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Vector3" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "idx" type= "int" />
2017-09-12 20:42:36 +00:00
<description >
2019-03-29 22:37:35 +00:00
Gets the position of the 8 endpoints of the [AABB] in space.
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "get_longest_axis" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Vector3" />
2017-09-12 20:42:36 +00:00
<description >
2019-03-29 22:37:35 +00:00
Returns the normalized longest axis of the [AABB].
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "get_longest_axis_index" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "int" />
2017-09-12 20:42:36 +00:00
<description >
2019-12-06 22:09:20 +00:00
Returns the index of the longest axis of the [AABB] (according to [Vector3]'s [code]AXIS_*[/code] constants).
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "get_longest_axis_size" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "float" />
2017-09-12 20:42:36 +00:00
<description >
2019-03-29 22:37:35 +00:00
Returns the scalar length of the longest axis of the [AABB].
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "get_shortest_axis" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Vector3" />
2017-09-12 20:42:36 +00:00
<description >
2019-03-29 22:37:35 +00:00
Returns the normalized shortest axis of the [AABB].
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "get_shortest_axis_index" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "int" />
2017-09-12 20:42:36 +00:00
<description >
2019-03-29 22:37:35 +00:00
Returns the index of the shortest axis of the [AABB] (according to [Vector3]::AXIS* enum).
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "get_shortest_axis_size" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "float" />
2017-09-12 20:42:36 +00:00
<description >
2019-03-29 22:37:35 +00:00
Returns the scalar length of the shortest axis of the [AABB].
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "get_support" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Vector3" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "dir" type= "Vector3" />
2017-09-12 20:42:36 +00:00
<description >
2017-10-22 20:43:35 +00:00
Returns the support point in a given direction. This is useful for collision detection algorithms.
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-11-05 01:01:59 +00:00
<method name= "get_volume" qualifiers= "const" >
<return type= "float" />
<description >
Returns the volume of the [AABB].
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "grow" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "AABB" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "by" type= "float" />
2017-09-12 20:42:36 +00:00
<description >
2022-08-17 22:08:09 +00:00
Returns a copy of the [AABB] grown a given number of units towards all the sides.
2017-09-12 20:42:36 +00:00
</description>
</method>
2022-08-15 02:48:13 +00:00
<method name= "has_point" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-15 02:48:13 +00:00
<param index= "0" name= "point" type= "Vector3" />
2017-09-12 20:42:36 +00:00
<description >
2022-08-15 02:48:13 +00:00
Returns [code]true[/code] if the [AABB] contains a point. Points on the faces of the AABB are considered included, though float-point precision errors may impact the accuracy of such checks.
[b]Note:[/b] This method is not reliable for [AABB] with a [i]negative size[/i]. Use [method abs] to get a positive sized equivalent [AABB] to check for contained points.
2017-09-12 20:42:36 +00:00
</description>
</method>
2022-08-15 02:48:13 +00:00
<method name= "has_surface" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2017-09-12 20:42:36 +00:00
<description >
2022-08-15 02:48:13 +00:00
Returns [code]true[/code] if the [AABB] has a surface or a length, and [code]false[/code] if the [AABB] is empty (all components of [member size] are zero or negative).
2017-09-12 20:42:36 +00:00
</description>
</method>
2022-08-15 02:48:13 +00:00
<method name= "has_volume" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2017-09-12 20:42:36 +00:00
<description >
2022-08-15 02:48:13 +00:00
Returns [code]true[/code] if the [AABB] has a volume, and [code]false[/code] if the [AABB] is flat, empty, or has a negative [member size].
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "intersection" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "AABB" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "with" type= "AABB" />
2017-09-12 20:42:36 +00:00
<description >
2021-12-02 14:45:18 +00:00
Returns the intersection between two [AABB]. An empty AABB (size [code](0, 0, 0)[/code]) is returned on failure.
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "intersects" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "with" type= "AABB" />
2017-09-12 20:42:36 +00:00
<description >
2019-03-29 22:37:35 +00:00
Returns [code]true[/code] if the [AABB] overlaps with another.
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "intersects_plane" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "plane" type= "Plane" />
2017-09-12 20:42:36 +00:00
<description >
2019-03-29 22:37:35 +00:00
Returns [code]true[/code] if the [AABB] is on both sides of a plane.
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "intersects_ray" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Variant" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "from" type= "Vector3" />
<param index= "1" name= "dir" type= "Vector3" />
2020-11-04 14:38:26 +00:00
<description >
2022-10-06 19:59:48 +00:00
Returns [code]true[/code] if the given ray intersects with this [AABB]. Ray length is infinite.
2020-11-04 14:38:26 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "intersects_segment" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "Variant" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "from" type= "Vector3" />
<param index= "1" name= "to" type= "Vector3" />
2017-09-12 20:42:36 +00:00
<description >
2022-08-12 17:51:01 +00:00
Returns [code]true[/code] if the [AABB] intersects the line segment between [param from] and [param to].
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "is_equal_approx" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "aabb" type= "AABB" />
2019-11-08 07:33:48 +00:00
<description >
2022-08-12 17:51:01 +00:00
Returns [code]true[/code] if this [AABB] and [param aabb] are approximately equal, by calling [method @GlobalScope.is_equal_approx] on each component.
2019-11-08 07:33:48 +00:00
</description>
</method>
2022-08-11 08:12:27 +00:00
<method name= "is_finite" qualifiers= "const" >
<return type= "bool" />
<description >
Returns [code]true[/code] if this [AABB] is finite, by calling [method @GlobalScope.is_finite] on each component.
</description>
</method>
2021-03-18 13:44:42 +00:00
<method name= "merge" qualifiers= "const" >
2021-07-30 13:28:05 +00:00
<return type= "AABB" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "with" type= "AABB" />
2017-09-12 20:42:36 +00:00
<description >
2022-08-12 17:51:01 +00:00
Returns a larger [AABB] that contains both this [AABB] and [param with].
2017-09-12 20:42:36 +00:00
</description>
</method>
2021-09-21 02:49:02 +00:00
</methods>
<members >
<member name= "end" type= "Vector3" setter= "" getter= "" default= "Vector3(0, 0, 0)" >
Ending corner. This is calculated as [code]position + size[/code]. Setting this value will change the size.
</member>
<member name= "position" type= "Vector3" setter= "" getter= "" default= "Vector3(0, 0, 0)" >
Beginning corner. Typically has values lower than [member end].
</member>
<member name= "size" type= "Vector3" setter= "" getter= "" default= "Vector3(0, 0, 0)" >
Size from [member position] to [member end]. Typically, all components are positive.
If the size is negative, you can use [method abs] to fix it.
</member>
</members>
<operators >
<operator name= "operator !=" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "right" type= "AABB" />
2020-11-10 13:16:20 +00:00
<description >
2021-11-04 15:58:20 +00:00
Returns [code]true[/code] if the vectors are not equal.
[b]Note:[/b] Due to floating-point precision errors, consider using [method is_equal_approx] instead, which is more reliable.
2020-11-10 13:16:20 +00:00
</description>
2021-09-21 02:49:02 +00:00
</operator>
<operator name= "operator *" >
2021-07-30 13:28:05 +00:00
<return type= "AABB" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "right" type= "Transform3D" />
2020-11-10 13:16:20 +00:00
<description >
2021-11-04 15:58:20 +00:00
Inversely transforms (multiplies) the [AABB] by the given [Transform3D] transformation matrix.
2020-11-10 13:16:20 +00:00
</description>
2021-09-21 02:49:02 +00:00
</operator>
<operator name= "operator ==" >
2021-07-30 13:28:05 +00:00
<return type= "bool" />
2022-08-06 18:11:48 +00:00
<param index= "0" name= "right" type= "AABB" />
2020-11-10 13:16:20 +00:00
<description >
2021-11-04 15:58:20 +00:00
Returns [code]true[/code] if the AABBs are exactly equal.
[b]Note:[/b] Due to floating-point precision errors, consider using [method is_equal_approx] instead, which is more reliable.
2020-11-10 13:16:20 +00:00
</description>
2021-09-21 02:49:02 +00:00
</operator>
</operators>
2017-09-12 20:42:36 +00:00
</class>