2
0

class_aabb.rst 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AABB.xml.
  6. .. _class_AABB:
  7. AABB
  8. ====
  9. Axis-Aligned Bounding Box.
  10. .. rst-class:: classref-introduction-group
  11. Description
  12. -----------
  13. **AABB** consists of a position, a size, and several utility functions. It is typically used for fast overlap tests.
  14. It uses floating-point coordinates. The 2D counterpart to **AABB** is :ref:`Rect2<class_Rect2>`.
  15. \ **Note:** Unlike :ref:`Rect2<class_Rect2>`, **AABB** does not have a variant that uses integer coordinates.
  16. .. rst-class:: classref-introduction-group
  17. Tutorials
  18. ---------
  19. - :doc:`Math tutorial index <../tutorials/math/index>`
  20. - :doc:`Vector math <../tutorials/math/vector_math>`
  21. - :doc:`Advanced vector math <../tutorials/math/vectors_advanced>`
  22. .. rst-class:: classref-reftable-group
  23. Properties
  24. ----------
  25. .. table::
  26. :widths: auto
  27. +-------------------------------+-----------------------------------------------+------------------------+
  28. | :ref:`Vector3<class_Vector3>` | :ref:`end<class_AABB_property_end>` | ``Vector3( 0, 0, 0 )`` |
  29. +-------------------------------+-----------------------------------------------+------------------------+
  30. | :ref:`Vector3<class_Vector3>` | :ref:`position<class_AABB_property_position>` | ``Vector3( 0, 0, 0 )`` |
  31. +-------------------------------+-----------------------------------------------+------------------------+
  32. | :ref:`Vector3<class_Vector3>` | :ref:`size<class_AABB_property_size>` | ``Vector3( 0, 0, 0 )`` |
  33. +-------------------------------+-----------------------------------------------+------------------------+
  34. .. rst-class:: classref-reftable-group
  35. Methods
  36. -------
  37. .. table::
  38. :widths: auto
  39. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  40. | :ref:`AABB<class_AABB>` | :ref:`AABB<class_AABB_method_AABB>` **(** :ref:`Vector3<class_Vector3>` position, :ref:`Vector3<class_Vector3>` size **)** |
  41. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  42. | :ref:`AABB<class_AABB>` | :ref:`abs<class_AABB_method_abs>` **(** **)** |
  43. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  44. | :ref:`bool<class_bool>` | :ref:`encloses<class_AABB_method_encloses>` **(** :ref:`AABB<class_AABB>` with **)** |
  45. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`AABB<class_AABB>` | :ref:`expand<class_AABB_method_expand>` **(** :ref:`Vector3<class_Vector3>` to_point **)** |
  47. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  48. | :ref:`float<class_float>` | :ref:`get_area<class_AABB_method_get_area>` **(** **)** |
  49. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`Vector3<class_Vector3>` | :ref:`get_center<class_AABB_method_get_center>` **(** **)** |
  51. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`Vector3<class_Vector3>` | :ref:`get_endpoint<class_AABB_method_get_endpoint>` **(** :ref:`int<class_int>` idx **)** |
  53. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`Vector3<class_Vector3>` | :ref:`get_longest_axis<class_AABB_method_get_longest_axis>` **(** **)** |
  55. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  56. | :ref:`int<class_int>` | :ref:`get_longest_axis_index<class_AABB_method_get_longest_axis_index>` **(** **)** |
  57. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  58. | :ref:`float<class_float>` | :ref:`get_longest_axis_size<class_AABB_method_get_longest_axis_size>` **(** **)** |
  59. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  60. | :ref:`Vector3<class_Vector3>` | :ref:`get_shortest_axis<class_AABB_method_get_shortest_axis>` **(** **)** |
  61. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  62. | :ref:`int<class_int>` | :ref:`get_shortest_axis_index<class_AABB_method_get_shortest_axis_index>` **(** **)** |
  63. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  64. | :ref:`float<class_float>` | :ref:`get_shortest_axis_size<class_AABB_method_get_shortest_axis_size>` **(** **)** |
  65. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  66. | :ref:`Vector3<class_Vector3>` | :ref:`get_support<class_AABB_method_get_support>` **(** :ref:`Vector3<class_Vector3>` dir **)** |
  67. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  68. | :ref:`AABB<class_AABB>` | :ref:`grow<class_AABB_method_grow>` **(** :ref:`float<class_float>` by **)** |
  69. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  70. | :ref:`bool<class_bool>` | :ref:`has_no_area<class_AABB_method_has_no_area>` **(** **)** |
  71. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  72. | :ref:`bool<class_bool>` | :ref:`has_no_surface<class_AABB_method_has_no_surface>` **(** **)** |
  73. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  74. | :ref:`bool<class_bool>` | :ref:`has_point<class_AABB_method_has_point>` **(** :ref:`Vector3<class_Vector3>` point **)** |
  75. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  76. | :ref:`AABB<class_AABB>` | :ref:`intersection<class_AABB_method_intersection>` **(** :ref:`AABB<class_AABB>` with **)** |
  77. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  78. | :ref:`bool<class_bool>` | :ref:`intersects<class_AABB_method_intersects>` **(** :ref:`AABB<class_AABB>` with **)** |
  79. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  80. | :ref:`bool<class_bool>` | :ref:`intersects_plane<class_AABB_method_intersects_plane>` **(** :ref:`Plane<class_Plane>` plane **)** |
  81. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  82. | :ref:`bool<class_bool>` | :ref:`intersects_segment<class_AABB_method_intersects_segment>` **(** :ref:`Vector3<class_Vector3>` from, :ref:`Vector3<class_Vector3>` to **)** |
  83. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | :ref:`bool<class_bool>` | :ref:`is_equal_approx<class_AABB_method_is_equal_approx>` **(** :ref:`AABB<class_AABB>` aabb **)** |
  85. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  86. | :ref:`AABB<class_AABB>` | :ref:`merge<class_AABB_method_merge>` **(** :ref:`AABB<class_AABB>` with **)** |
  87. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  88. .. rst-class:: classref-section-separator
  89. ----
  90. .. rst-class:: classref-descriptions-group
  91. Property Descriptions
  92. ---------------------
  93. .. _class_AABB_property_end:
  94. .. rst-class:: classref-property
  95. :ref:`Vector3<class_Vector3>` **end** = ``Vector3( 0, 0, 0 )``
  96. Ending corner. This is calculated as ``position + size``. Setting this value will change the size.
  97. .. rst-class:: classref-item-separator
  98. ----
  99. .. _class_AABB_property_position:
  100. .. rst-class:: classref-property
  101. :ref:`Vector3<class_Vector3>` **position** = ``Vector3( 0, 0, 0 )``
  102. Beginning corner. Typically has values lower than :ref:`end<class_AABB_property_end>`.
  103. .. rst-class:: classref-item-separator
  104. ----
  105. .. _class_AABB_property_size:
  106. .. rst-class:: classref-property
  107. :ref:`Vector3<class_Vector3>` **size** = ``Vector3( 0, 0, 0 )``
  108. Size from :ref:`position<class_AABB_property_position>` to :ref:`end<class_AABB_property_end>`. Typically, all components are positive.
  109. If the size is negative, you can use :ref:`abs<class_AABB_method_abs>` to fix it.
  110. .. rst-class:: classref-section-separator
  111. ----
  112. .. rst-class:: classref-descriptions-group
  113. Method Descriptions
  114. -------------------
  115. .. _class_AABB_method_AABB:
  116. .. rst-class:: classref-method
  117. :ref:`AABB<class_AABB>` **AABB** **(** :ref:`Vector3<class_Vector3>` position, :ref:`Vector3<class_Vector3>` size **)**
  118. Constructs an **AABB** from a position and size.
  119. .. rst-class:: classref-item-separator
  120. ----
  121. .. _class_AABB_method_abs:
  122. .. rst-class:: classref-method
  123. :ref:`AABB<class_AABB>` **abs** **(** **)**
  124. Returns an AABB with equivalent position and size, modified so that the most-negative corner is the origin and the size is positive.
  125. .. rst-class:: classref-item-separator
  126. ----
  127. .. _class_AABB_method_encloses:
  128. .. rst-class:: classref-method
  129. :ref:`bool<class_bool>` **encloses** **(** :ref:`AABB<class_AABB>` with **)**
  130. Returns ``true`` if this **AABB** completely encloses another one.
  131. .. rst-class:: classref-item-separator
  132. ----
  133. .. _class_AABB_method_expand:
  134. .. rst-class:: classref-method
  135. :ref:`AABB<class_AABB>` **expand** **(** :ref:`Vector3<class_Vector3>` to_point **)**
  136. Returns a copy of this **AABB** expanded to include a given point.
  137. \ **Example:**\
  138. ::
  139. # position (-3, 2, 0), size (1, 1, 1)
  140. var box = AABB(Vector3(-3, 2, 0), Vector3(1, 1, 1))
  141. # position (-3, -1, 0), size (3, 4, 2), so we fit both the original AABB and Vector3(0, -1, 2)
  142. var box2 = box.expand(Vector3(0, -1, 2))
  143. .. rst-class:: classref-item-separator
  144. ----
  145. .. _class_AABB_method_get_area:
  146. .. rst-class:: classref-method
  147. :ref:`float<class_float>` **get_area** **(** **)**
  148. Returns the volume of the **AABB**.
  149. .. rst-class:: classref-item-separator
  150. ----
  151. .. _class_AABB_method_get_center:
  152. .. rst-class:: classref-method
  153. :ref:`Vector3<class_Vector3>` **get_center** **(** **)**
  154. Returns the center of the **AABB**, which is equal to :ref:`position<class_AABB_property_position>` + (:ref:`size<class_AABB_property_size>` / 2).
  155. .. rst-class:: classref-item-separator
  156. ----
  157. .. _class_AABB_method_get_endpoint:
  158. .. rst-class:: classref-method
  159. :ref:`Vector3<class_Vector3>` **get_endpoint** **(** :ref:`int<class_int>` idx **)**
  160. Gets the position of the 8 endpoints of the **AABB** in space.
  161. .. rst-class:: classref-item-separator
  162. ----
  163. .. _class_AABB_method_get_longest_axis:
  164. .. rst-class:: classref-method
  165. :ref:`Vector3<class_Vector3>` **get_longest_axis** **(** **)**
  166. Returns the normalized longest axis of the **AABB**.
  167. .. rst-class:: classref-item-separator
  168. ----
  169. .. _class_AABB_method_get_longest_axis_index:
  170. .. rst-class:: classref-method
  171. :ref:`int<class_int>` **get_longest_axis_index** **(** **)**
  172. Returns the index of the longest axis of the **AABB** (according to :ref:`Vector3<class_Vector3>`'s ``AXIS_*`` constants).
  173. .. rst-class:: classref-item-separator
  174. ----
  175. .. _class_AABB_method_get_longest_axis_size:
  176. .. rst-class:: classref-method
  177. :ref:`float<class_float>` **get_longest_axis_size** **(** **)**
  178. Returns the scalar length of the longest axis of the **AABB**.
  179. .. rst-class:: classref-item-separator
  180. ----
  181. .. _class_AABB_method_get_shortest_axis:
  182. .. rst-class:: classref-method
  183. :ref:`Vector3<class_Vector3>` **get_shortest_axis** **(** **)**
  184. Returns the normalized shortest axis of the **AABB**.
  185. .. rst-class:: classref-item-separator
  186. ----
  187. .. _class_AABB_method_get_shortest_axis_index:
  188. .. rst-class:: classref-method
  189. :ref:`int<class_int>` **get_shortest_axis_index** **(** **)**
  190. Returns the index of the shortest axis of the **AABB** (according to :ref:`Vector3<class_Vector3>`::AXIS\* enum).
  191. .. rst-class:: classref-item-separator
  192. ----
  193. .. _class_AABB_method_get_shortest_axis_size:
  194. .. rst-class:: classref-method
  195. :ref:`float<class_float>` **get_shortest_axis_size** **(** **)**
  196. Returns the scalar length of the shortest axis of the **AABB**.
  197. .. rst-class:: classref-item-separator
  198. ----
  199. .. _class_AABB_method_get_support:
  200. .. rst-class:: classref-method
  201. :ref:`Vector3<class_Vector3>` **get_support** **(** :ref:`Vector3<class_Vector3>` dir **)**
  202. Returns the support point in a given direction. This is useful for collision detection algorithms.
  203. .. rst-class:: classref-item-separator
  204. ----
  205. .. _class_AABB_method_grow:
  206. .. rst-class:: classref-method
  207. :ref:`AABB<class_AABB>` **grow** **(** :ref:`float<class_float>` by **)**
  208. Returns a copy of the **AABB** grown a given amount of units towards all the sides.
  209. .. rst-class:: classref-item-separator
  210. ----
  211. .. _class_AABB_method_has_no_area:
  212. .. rst-class:: classref-method
  213. :ref:`bool<class_bool>` **has_no_area** **(** **)**
  214. Returns ``true`` if the **AABB** is flat or empty.
  215. .. rst-class:: classref-item-separator
  216. ----
  217. .. _class_AABB_method_has_no_surface:
  218. .. rst-class:: classref-method
  219. :ref:`bool<class_bool>` **has_no_surface** **(** **)**
  220. Returns ``true`` if the **AABB** is empty.
  221. .. rst-class:: classref-item-separator
  222. ----
  223. .. _class_AABB_method_has_point:
  224. .. rst-class:: classref-method
  225. :ref:`bool<class_bool>` **has_point** **(** :ref:`Vector3<class_Vector3>` point **)**
  226. Returns ``true`` if the **AABB** contains a point.
  227. .. rst-class:: classref-item-separator
  228. ----
  229. .. _class_AABB_method_intersection:
  230. .. rst-class:: classref-method
  231. :ref:`AABB<class_AABB>` **intersection** **(** :ref:`AABB<class_AABB>` with **)**
  232. Returns the intersection between two **AABB**. An empty AABB (size 0,0,0) is returned on failure.
  233. .. rst-class:: classref-item-separator
  234. ----
  235. .. _class_AABB_method_intersects:
  236. .. rst-class:: classref-method
  237. :ref:`bool<class_bool>` **intersects** **(** :ref:`AABB<class_AABB>` with **)**
  238. Returns ``true`` if the **AABB** overlaps with another.
  239. .. rst-class:: classref-item-separator
  240. ----
  241. .. _class_AABB_method_intersects_plane:
  242. .. rst-class:: classref-method
  243. :ref:`bool<class_bool>` **intersects_plane** **(** :ref:`Plane<class_Plane>` plane **)**
  244. Returns ``true`` if the **AABB** is on both sides of a plane.
  245. .. rst-class:: classref-item-separator
  246. ----
  247. .. _class_AABB_method_intersects_segment:
  248. .. rst-class:: classref-method
  249. :ref:`bool<class_bool>` **intersects_segment** **(** :ref:`Vector3<class_Vector3>` from, :ref:`Vector3<class_Vector3>` to **)**
  250. Returns ``true`` if the **AABB** intersects the line segment between ``from`` and ``to``.
  251. .. rst-class:: classref-item-separator
  252. ----
  253. .. _class_AABB_method_is_equal_approx:
  254. .. rst-class:: classref-method
  255. :ref:`bool<class_bool>` **is_equal_approx** **(** :ref:`AABB<class_AABB>` aabb **)**
  256. Returns ``true`` if this **AABB** and ``aabb`` are approximately equal, by calling :ref:`@GDScript.is_equal_approx<class_@GDScript_method_is_equal_approx>` on each component.
  257. .. rst-class:: classref-item-separator
  258. ----
  259. .. _class_AABB_method_merge:
  260. .. rst-class:: classref-method
  261. :ref:`AABB<class_AABB>` **merge** **(** :ref:`AABB<class_AABB>` with **)**
  262. Returns a larger **AABB** that contains both this **AABB** and ``with``.
  263. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  264. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  265. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  266. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`