class_aabb.rst 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614
  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/master/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/master/doc/classes/AABB.xml.
  6. .. _class_AABB:
  7. AABB
  8. ====
  9. A 3D 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. Negative values for :ref:`size<class_AABB_property_size>` are not supported and will not work for most methods. Use :ref:`abs<class_AABB_method_abs>` to get an AABB with a positive size.
  16. \ **Note:** Unlike :ref:`Rect2<class_Rect2>`, **AABB** does not have a variant that uses integer coordinates.
  17. .. note::
  18. There are notable differences when using this API with C#. See :ref:`doc_c_sharp_differences` for more information.
  19. .. rst-class:: classref-introduction-group
  20. Tutorials
  21. ---------
  22. - :doc:`Math documentation index <../tutorials/math/index>`
  23. - :doc:`Vector math <../tutorials/math/vector_math>`
  24. - :doc:`Advanced vector math <../tutorials/math/vectors_advanced>`
  25. .. rst-class:: classref-reftable-group
  26. Properties
  27. ----------
  28. .. table::
  29. :widths: auto
  30. +-------------------------------+-----------------------------------------------+----------------------+
  31. | :ref:`Vector3<class_Vector3>` | :ref:`end<class_AABB_property_end>` | ``Vector3(0, 0, 0)`` |
  32. +-------------------------------+-----------------------------------------------+----------------------+
  33. | :ref:`Vector3<class_Vector3>` | :ref:`position<class_AABB_property_position>` | ``Vector3(0, 0, 0)`` |
  34. +-------------------------------+-----------------------------------------------+----------------------+
  35. | :ref:`Vector3<class_Vector3>` | :ref:`size<class_AABB_property_size>` | ``Vector3(0, 0, 0)`` |
  36. +-------------------------------+-----------------------------------------------+----------------------+
  37. .. rst-class:: classref-reftable-group
  38. Constructors
  39. ------------
  40. .. table::
  41. :widths: auto
  42. +-------------------------+---------------------------------------------------------------------------------------------------------------------------------+
  43. | :ref:`AABB<class_AABB>` | :ref:`AABB<class_AABB_constructor_AABB>` **(** **)** |
  44. +-------------------------+---------------------------------------------------------------------------------------------------------------------------------+
  45. | :ref:`AABB<class_AABB>` | :ref:`AABB<class_AABB_constructor_AABB>` **(** :ref:`AABB<class_AABB>` from **)** |
  46. +-------------------------+---------------------------------------------------------------------------------------------------------------------------------+
  47. | :ref:`AABB<class_AABB>` | :ref:`AABB<class_AABB_constructor_AABB>` **(** :ref:`Vector3<class_Vector3>` position, :ref:`Vector3<class_Vector3>` size **)** |
  48. +-------------------------+---------------------------------------------------------------------------------------------------------------------------------+
  49. .. rst-class:: classref-reftable-group
  50. Methods
  51. -------
  52. .. table::
  53. :widths: auto
  54. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  55. | :ref:`AABB<class_AABB>` | :ref:`abs<class_AABB_method_abs>` **(** **)** |const| |
  56. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  57. | :ref:`bool<class_bool>` | :ref:`encloses<class_AABB_method_encloses>` **(** :ref:`AABB<class_AABB>` with **)** |const| |
  58. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  59. | :ref:`AABB<class_AABB>` | :ref:`expand<class_AABB_method_expand>` **(** :ref:`Vector3<class_Vector3>` to_point **)** |const| |
  60. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  61. | :ref:`Vector3<class_Vector3>` | :ref:`get_center<class_AABB_method_get_center>` **(** **)** |const| |
  62. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  63. | :ref:`Vector3<class_Vector3>` | :ref:`get_endpoint<class_AABB_method_get_endpoint>` **(** :ref:`int<class_int>` idx **)** |const| |
  64. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  65. | :ref:`Vector3<class_Vector3>` | :ref:`get_longest_axis<class_AABB_method_get_longest_axis>` **(** **)** |const| |
  66. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  67. | :ref:`int<class_int>` | :ref:`get_longest_axis_index<class_AABB_method_get_longest_axis_index>` **(** **)** |const| |
  68. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  69. | :ref:`float<class_float>` | :ref:`get_longest_axis_size<class_AABB_method_get_longest_axis_size>` **(** **)** |const| |
  70. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  71. | :ref:`Vector3<class_Vector3>` | :ref:`get_shortest_axis<class_AABB_method_get_shortest_axis>` **(** **)** |const| |
  72. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  73. | :ref:`int<class_int>` | :ref:`get_shortest_axis_index<class_AABB_method_get_shortest_axis_index>` **(** **)** |const| |
  74. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  75. | :ref:`float<class_float>` | :ref:`get_shortest_axis_size<class_AABB_method_get_shortest_axis_size>` **(** **)** |const| |
  76. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  77. | :ref:`Vector3<class_Vector3>` | :ref:`get_support<class_AABB_method_get_support>` **(** :ref:`Vector3<class_Vector3>` dir **)** |const| |
  78. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  79. | :ref:`float<class_float>` | :ref:`get_volume<class_AABB_method_get_volume>` **(** **)** |const| |
  80. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  81. | :ref:`AABB<class_AABB>` | :ref:`grow<class_AABB_method_grow>` **(** :ref:`float<class_float>` by **)** |const| |
  82. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  83. | :ref:`bool<class_bool>` | :ref:`has_point<class_AABB_method_has_point>` **(** :ref:`Vector3<class_Vector3>` point **)** |const| |
  84. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  85. | :ref:`bool<class_bool>` | :ref:`has_surface<class_AABB_method_has_surface>` **(** **)** |const| |
  86. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  87. | :ref:`bool<class_bool>` | :ref:`has_volume<class_AABB_method_has_volume>` **(** **)** |const| |
  88. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  89. | :ref:`AABB<class_AABB>` | :ref:`intersection<class_AABB_method_intersection>` **(** :ref:`AABB<class_AABB>` with **)** |const| |
  90. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  91. | :ref:`bool<class_bool>` | :ref:`intersects<class_AABB_method_intersects>` **(** :ref:`AABB<class_AABB>` with **)** |const| |
  92. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  93. | :ref:`bool<class_bool>` | :ref:`intersects_plane<class_AABB_method_intersects_plane>` **(** :ref:`Plane<class_Plane>` plane **)** |const| |
  94. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  95. | :ref:`Variant<class_Variant>` | :ref:`intersects_ray<class_AABB_method_intersects_ray>` **(** :ref:`Vector3<class_Vector3>` from, :ref:`Vector3<class_Vector3>` dir **)** |const| |
  96. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  97. | :ref:`Variant<class_Variant>` | :ref:`intersects_segment<class_AABB_method_intersects_segment>` **(** :ref:`Vector3<class_Vector3>` from, :ref:`Vector3<class_Vector3>` to **)** |const| |
  98. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  99. | :ref:`bool<class_bool>` | :ref:`is_equal_approx<class_AABB_method_is_equal_approx>` **(** :ref:`AABB<class_AABB>` aabb **)** |const| |
  100. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  101. | :ref:`bool<class_bool>` | :ref:`is_finite<class_AABB_method_is_finite>` **(** **)** |const| |
  102. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  103. | :ref:`AABB<class_AABB>` | :ref:`merge<class_AABB_method_merge>` **(** :ref:`AABB<class_AABB>` with **)** |const| |
  104. +-------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------+
  105. .. rst-class:: classref-reftable-group
  106. Operators
  107. ---------
  108. .. table::
  109. :widths: auto
  110. +-------------------------+----------------------------------------------------------------------------------------------------------------+
  111. | :ref:`bool<class_bool>` | :ref:`operator !=<class_AABB_operator_neq_AABB>` **(** :ref:`AABB<class_AABB>` right **)** |
  112. +-------------------------+----------------------------------------------------------------------------------------------------------------+
  113. | :ref:`AABB<class_AABB>` | :ref:`operator *<class_AABB_operator_mul_Transform3D>` **(** :ref:`Transform3D<class_Transform3D>` right **)** |
  114. +-------------------------+----------------------------------------------------------------------------------------------------------------+
  115. | :ref:`bool<class_bool>` | :ref:`operator ==<class_AABB_operator_eq_AABB>` **(** :ref:`AABB<class_AABB>` right **)** |
  116. +-------------------------+----------------------------------------------------------------------------------------------------------------+
  117. .. rst-class:: classref-section-separator
  118. ----
  119. .. rst-class:: classref-descriptions-group
  120. Property Descriptions
  121. ---------------------
  122. .. _class_AABB_property_end:
  123. .. rst-class:: classref-property
  124. :ref:`Vector3<class_Vector3>` **end** = ``Vector3(0, 0, 0)``
  125. Ending corner. This is calculated as ``position + size``. Setting this value will change the size.
  126. .. rst-class:: classref-item-separator
  127. ----
  128. .. _class_AABB_property_position:
  129. .. rst-class:: classref-property
  130. :ref:`Vector3<class_Vector3>` **position** = ``Vector3(0, 0, 0)``
  131. Beginning corner. Typically has values lower than :ref:`end<class_AABB_property_end>`.
  132. .. rst-class:: classref-item-separator
  133. ----
  134. .. _class_AABB_property_size:
  135. .. rst-class:: classref-property
  136. :ref:`Vector3<class_Vector3>` **size** = ``Vector3(0, 0, 0)``
  137. Size from :ref:`position<class_AABB_property_position>` to :ref:`end<class_AABB_property_end>`. Typically, all components are positive.
  138. If the size is negative, you can use :ref:`abs<class_AABB_method_abs>` to fix it.
  139. .. rst-class:: classref-section-separator
  140. ----
  141. .. rst-class:: classref-descriptions-group
  142. Constructor Descriptions
  143. ------------------------
  144. .. _class_AABB_constructor_AABB:
  145. .. rst-class:: classref-constructor
  146. :ref:`AABB<class_AABB>` **AABB** **(** **)**
  147. Constructs a default-initialized **AABB** with default (zero) values of :ref:`position<class_AABB_property_position>` and :ref:`size<class_AABB_property_size>`.
  148. .. rst-class:: classref-item-separator
  149. ----
  150. .. rst-class:: classref-constructor
  151. :ref:`AABB<class_AABB>` **AABB** **(** :ref:`AABB<class_AABB>` from **)**
  152. Constructs an **AABB** as a copy of the given **AABB**.
  153. .. rst-class:: classref-item-separator
  154. ----
  155. .. rst-class:: classref-constructor
  156. :ref:`AABB<class_AABB>` **AABB** **(** :ref:`Vector3<class_Vector3>` position, :ref:`Vector3<class_Vector3>` size **)**
  157. Constructs an **AABB** from a position and size.
  158. .. rst-class:: classref-section-separator
  159. ----
  160. .. rst-class:: classref-descriptions-group
  161. Method Descriptions
  162. -------------------
  163. .. _class_AABB_method_abs:
  164. .. rst-class:: classref-method
  165. :ref:`AABB<class_AABB>` **abs** **(** **)** |const|
  166. Returns an AABB with equivalent position and size, modified so that the most-negative corner is the origin and the size is positive.
  167. .. rst-class:: classref-item-separator
  168. ----
  169. .. _class_AABB_method_encloses:
  170. .. rst-class:: classref-method
  171. :ref:`bool<class_bool>` **encloses** **(** :ref:`AABB<class_AABB>` with **)** |const|
  172. Returns ``true`` if this **AABB** completely encloses another one.
  173. .. rst-class:: classref-item-separator
  174. ----
  175. .. _class_AABB_method_expand:
  176. .. rst-class:: classref-method
  177. :ref:`AABB<class_AABB>` **expand** **(** :ref:`Vector3<class_Vector3>` to_point **)** |const|
  178. Returns a copy of this **AABB** expanded to include a given point.
  179. \ **Example:**\
  180. .. tabs::
  181. .. code-tab:: gdscript
  182. # position (-3, 2, 0), size (1, 1, 1)
  183. var box = AABB(Vector3(-3, 2, 0), Vector3(1, 1, 1))
  184. # position (-3, -1, 0), size (3, 4, 2), so we fit both the original AABB and Vector3(0, -1, 2)
  185. var box2 = box.expand(Vector3(0, -1, 2))
  186. .. code-tab:: csharp
  187. // position (-3, 2, 0), size (1, 1, 1)
  188. var box = new Aabb(new Vector3(-3, 2, 0), new Vector3(1, 1, 1));
  189. // position (-3, -1, 0), size (3, 4, 2), so we fit both the original AABB and Vector3(0, -1, 2)
  190. var box2 = box.Expand(new Vector3(0, -1, 2));
  191. .. rst-class:: classref-item-separator
  192. ----
  193. .. _class_AABB_method_get_center:
  194. .. rst-class:: classref-method
  195. :ref:`Vector3<class_Vector3>` **get_center** **(** **)** |const|
  196. Returns the center of the **AABB**, which is equal to :ref:`position<class_AABB_property_position>` + (:ref:`size<class_AABB_property_size>` / 2).
  197. .. rst-class:: classref-item-separator
  198. ----
  199. .. _class_AABB_method_get_endpoint:
  200. .. rst-class:: classref-method
  201. :ref:`Vector3<class_Vector3>` **get_endpoint** **(** :ref:`int<class_int>` idx **)** |const|
  202. Gets the position of the 8 endpoints of the **AABB** in space.
  203. .. rst-class:: classref-item-separator
  204. ----
  205. .. _class_AABB_method_get_longest_axis:
  206. .. rst-class:: classref-method
  207. :ref:`Vector3<class_Vector3>` **get_longest_axis** **(** **)** |const|
  208. Returns the normalized longest axis of the **AABB**.
  209. .. rst-class:: classref-item-separator
  210. ----
  211. .. _class_AABB_method_get_longest_axis_index:
  212. .. rst-class:: classref-method
  213. :ref:`int<class_int>` **get_longest_axis_index** **(** **)** |const|
  214. Returns the index of the longest axis of the **AABB** (according to :ref:`Vector3<class_Vector3>`'s ``AXIS_*`` constants).
  215. .. rst-class:: classref-item-separator
  216. ----
  217. .. _class_AABB_method_get_longest_axis_size:
  218. .. rst-class:: classref-method
  219. :ref:`float<class_float>` **get_longest_axis_size** **(** **)** |const|
  220. Returns the scalar length of the longest axis of the **AABB**.
  221. .. rst-class:: classref-item-separator
  222. ----
  223. .. _class_AABB_method_get_shortest_axis:
  224. .. rst-class:: classref-method
  225. :ref:`Vector3<class_Vector3>` **get_shortest_axis** **(** **)** |const|
  226. Returns the normalized shortest axis of the **AABB**.
  227. .. rst-class:: classref-item-separator
  228. ----
  229. .. _class_AABB_method_get_shortest_axis_index:
  230. .. rst-class:: classref-method
  231. :ref:`int<class_int>` **get_shortest_axis_index** **(** **)** |const|
  232. Returns the index of the shortest axis of the **AABB** (according to :ref:`Vector3<class_Vector3>`::AXIS\* enum).
  233. .. rst-class:: classref-item-separator
  234. ----
  235. .. _class_AABB_method_get_shortest_axis_size:
  236. .. rst-class:: classref-method
  237. :ref:`float<class_float>` **get_shortest_axis_size** **(** **)** |const|
  238. Returns the scalar length of the shortest axis of the **AABB**.
  239. .. rst-class:: classref-item-separator
  240. ----
  241. .. _class_AABB_method_get_support:
  242. .. rst-class:: classref-method
  243. :ref:`Vector3<class_Vector3>` **get_support** **(** :ref:`Vector3<class_Vector3>` dir **)** |const|
  244. Returns the vertex of the AABB that's the farthest in a given direction. This point is commonly known as the support point in collision detection algorithms.
  245. .. rst-class:: classref-item-separator
  246. ----
  247. .. _class_AABB_method_get_volume:
  248. .. rst-class:: classref-method
  249. :ref:`float<class_float>` **get_volume** **(** **)** |const|
  250. Returns the volume of the **AABB**.
  251. .. rst-class:: classref-item-separator
  252. ----
  253. .. _class_AABB_method_grow:
  254. .. rst-class:: classref-method
  255. :ref:`AABB<class_AABB>` **grow** **(** :ref:`float<class_float>` by **)** |const|
  256. Returns a copy of the **AABB** grown a given number of units towards all the sides.
  257. .. rst-class:: classref-item-separator
  258. ----
  259. .. _class_AABB_method_has_point:
  260. .. rst-class:: classref-method
  261. :ref:`bool<class_bool>` **has_point** **(** :ref:`Vector3<class_Vector3>` point **)** |const|
  262. Returns ``true`` 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.
  263. \ **Note:** This method is not reliable for **AABB** with a *negative size*. Use :ref:`abs<class_AABB_method_abs>` to get a positive sized equivalent **AABB** to check for contained points.
  264. .. rst-class:: classref-item-separator
  265. ----
  266. .. _class_AABB_method_has_surface:
  267. .. rst-class:: classref-method
  268. :ref:`bool<class_bool>` **has_surface** **(** **)** |const|
  269. Returns ``true`` if the **AABB** has a surface or a length, and ``false`` if the **AABB** is empty (all components of :ref:`size<class_AABB_property_size>` are zero or negative).
  270. .. rst-class:: classref-item-separator
  271. ----
  272. .. _class_AABB_method_has_volume:
  273. .. rst-class:: classref-method
  274. :ref:`bool<class_bool>` **has_volume** **(** **)** |const|
  275. Returns ``true`` if the **AABB** has a volume, and ``false`` if the **AABB** is flat, empty, or has a negative :ref:`size<class_AABB_property_size>`.
  276. .. rst-class:: classref-item-separator
  277. ----
  278. .. _class_AABB_method_intersection:
  279. .. rst-class:: classref-method
  280. :ref:`AABB<class_AABB>` **intersection** **(** :ref:`AABB<class_AABB>` with **)** |const|
  281. Returns the intersection between two **AABB**. An empty AABB (size ``(0, 0, 0)``) is returned on failure.
  282. .. rst-class:: classref-item-separator
  283. ----
  284. .. _class_AABB_method_intersects:
  285. .. rst-class:: classref-method
  286. :ref:`bool<class_bool>` **intersects** **(** :ref:`AABB<class_AABB>` with **)** |const|
  287. Returns ``true`` if the **AABB** overlaps with another.
  288. .. rst-class:: classref-item-separator
  289. ----
  290. .. _class_AABB_method_intersects_plane:
  291. .. rst-class:: classref-method
  292. :ref:`bool<class_bool>` **intersects_plane** **(** :ref:`Plane<class_Plane>` plane **)** |const|
  293. Returns ``true`` if the **AABB** is on both sides of a plane.
  294. .. rst-class:: classref-item-separator
  295. ----
  296. .. _class_AABB_method_intersects_ray:
  297. .. rst-class:: classref-method
  298. :ref:`Variant<class_Variant>` **intersects_ray** **(** :ref:`Vector3<class_Vector3>` from, :ref:`Vector3<class_Vector3>` dir **)** |const|
  299. Returns the point of intersection of the given ray with this **AABB** or ``null`` if there is no intersection. Ray length is infinite.
  300. .. rst-class:: classref-item-separator
  301. ----
  302. .. _class_AABB_method_intersects_segment:
  303. .. rst-class:: classref-method
  304. :ref:`Variant<class_Variant>` **intersects_segment** **(** :ref:`Vector3<class_Vector3>` from, :ref:`Vector3<class_Vector3>` to **)** |const|
  305. Returns the point of intersection between ``from`` and ``to`` with this **AABB** or ``null`` if there is no intersection.
  306. .. rst-class:: classref-item-separator
  307. ----
  308. .. _class_AABB_method_is_equal_approx:
  309. .. rst-class:: classref-method
  310. :ref:`bool<class_bool>` **is_equal_approx** **(** :ref:`AABB<class_AABB>` aabb **)** |const|
  311. Returns ``true`` if this **AABB** and ``aabb`` are approximately equal, by calling :ref:`@GlobalScope.is_equal_approx<class_@GlobalScope_method_is_equal_approx>` on each component.
  312. .. rst-class:: classref-item-separator
  313. ----
  314. .. _class_AABB_method_is_finite:
  315. .. rst-class:: classref-method
  316. :ref:`bool<class_bool>` **is_finite** **(** **)** |const|
  317. Returns ``true`` if this **AABB** is finite, by calling :ref:`@GlobalScope.is_finite<class_@GlobalScope_method_is_finite>` on each component.
  318. .. rst-class:: classref-item-separator
  319. ----
  320. .. _class_AABB_method_merge:
  321. .. rst-class:: classref-method
  322. :ref:`AABB<class_AABB>` **merge** **(** :ref:`AABB<class_AABB>` with **)** |const|
  323. Returns a larger **AABB** that contains both this **AABB** and ``with``.
  324. .. rst-class:: classref-section-separator
  325. ----
  326. .. rst-class:: classref-descriptions-group
  327. Operator Descriptions
  328. ---------------------
  329. .. _class_AABB_operator_neq_AABB:
  330. .. rst-class:: classref-operator
  331. :ref:`bool<class_bool>` **operator !=** **(** :ref:`AABB<class_AABB>` right **)**
  332. Returns ``true`` if the AABBs are not equal.
  333. \ **Note:** Due to floating-point precision errors, consider using :ref:`is_equal_approx<class_AABB_method_is_equal_approx>` instead, which is more reliable.
  334. .. rst-class:: classref-item-separator
  335. ----
  336. .. _class_AABB_operator_mul_Transform3D:
  337. .. rst-class:: classref-operator
  338. :ref:`AABB<class_AABB>` **operator *** **(** :ref:`Transform3D<class_Transform3D>` right **)**
  339. Inversely transforms (multiplies) the **AABB** by the given :ref:`Transform3D<class_Transform3D>` transformation matrix, under the assumption that the transformation basis is orthonormal (i.e. rotation/reflection is fine, scaling/skew is not).
  340. \ ``aabb * transform`` is equivalent to ``transform.inverse() * aabb``. See :ref:`Transform3D.inverse<class_Transform3D_method_inverse>`.
  341. For transforming by inverse of an affine transformation (e.g. with scaling) ``transform.affine_inverse() * aabb`` can be used instead. See :ref:`Transform3D.affine_inverse<class_Transform3D_method_affine_inverse>`.
  342. .. rst-class:: classref-item-separator
  343. ----
  344. .. _class_AABB_operator_eq_AABB:
  345. .. rst-class:: classref-operator
  346. :ref:`bool<class_bool>` **operator ==** **(** :ref:`AABB<class_AABB>` right **)**
  347. Returns ``true`` if the AABBs are exactly equal.
  348. \ **Note:** Due to floating-point precision errors, consider using :ref:`is_equal_approx<class_AABB_method_is_equal_approx>` instead, which is more reliable.
  349. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  350. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  351. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  352. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  353. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  354. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  355. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`