class_aabb.rst 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. :github_url: hide
  2. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  3. .. DO NOT EDIT THIS FILE, but the AABB.xml source instead.
  4. .. The source is found in doc/classes or modules/<name>/doc_classes.
  5. .. _class_AABB:
  6. AABB
  7. ====
  8. **Category:** Built-In Types
  9. Brief Description
  10. -----------------
  11. Axis-Aligned Bounding Box.
  12. Properties
  13. ----------
  14. +-------------------------------+-----------------------------------------------+
  15. | :ref:`Vector3<class_Vector3>` | :ref:`end<class_AABB_property_end>` |
  16. +-------------------------------+-----------------------------------------------+
  17. | :ref:`Vector3<class_Vector3>` | :ref:`position<class_AABB_property_position>` |
  18. +-------------------------------+-----------------------------------------------+
  19. | :ref:`Vector3<class_Vector3>` | :ref:`size<class_AABB_property_size>` |
  20. +-------------------------------+-----------------------------------------------+
  21. Methods
  22. -------
  23. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  24. | :ref:`AABB<class_AABB>` | :ref:`AABB<class_AABB_method_AABB>` **(** :ref:`Vector3<class_Vector3>` position, :ref:`Vector3<class_Vector3>` size **)** |
  25. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  26. | :ref:`bool<class_bool>` | :ref:`encloses<class_AABB_method_encloses>` **(** :ref:`AABB<class_AABB>` with **)** |
  27. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  28. | :ref:`AABB<class_AABB>` | :ref:`expand<class_AABB_method_expand>` **(** :ref:`Vector3<class_Vector3>` to_point **)** |
  29. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  30. | :ref:`float<class_float>` | :ref:`get_area<class_AABB_method_get_area>` **(** **)** |
  31. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  32. | :ref:`Vector3<class_Vector3>` | :ref:`get_endpoint<class_AABB_method_get_endpoint>` **(** :ref:`int<class_int>` idx **)** |
  33. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  34. | :ref:`Vector3<class_Vector3>` | :ref:`get_longest_axis<class_AABB_method_get_longest_axis>` **(** **)** |
  35. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  36. | :ref:`int<class_int>` | :ref:`get_longest_axis_index<class_AABB_method_get_longest_axis_index>` **(** **)** |
  37. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  38. | :ref:`float<class_float>` | :ref:`get_longest_axis_size<class_AABB_method_get_longest_axis_size>` **(** **)** |
  39. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  40. | :ref:`Vector3<class_Vector3>` | :ref:`get_shortest_axis<class_AABB_method_get_shortest_axis>` **(** **)** |
  41. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  42. | :ref:`int<class_int>` | :ref:`get_shortest_axis_index<class_AABB_method_get_shortest_axis_index>` **(** **)** |
  43. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  44. | :ref:`float<class_float>` | :ref:`get_shortest_axis_size<class_AABB_method_get_shortest_axis_size>` **(** **)** |
  45. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`Vector3<class_Vector3>` | :ref:`get_support<class_AABB_method_get_support>` **(** :ref:`Vector3<class_Vector3>` dir **)** |
  47. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  48. | :ref:`AABB<class_AABB>` | :ref:`grow<class_AABB_method_grow>` **(** :ref:`float<class_float>` by **)** |
  49. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`bool<class_bool>` | :ref:`has_no_area<class_AABB_method_has_no_area>` **(** **)** |
  51. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`bool<class_bool>` | :ref:`has_no_surface<class_AABB_method_has_no_surface>` **(** **)** |
  53. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`bool<class_bool>` | :ref:`has_point<class_AABB_method_has_point>` **(** :ref:`Vector3<class_Vector3>` point **)** |
  55. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  56. | :ref:`AABB<class_AABB>` | :ref:`intersection<class_AABB_method_intersection>` **(** :ref:`AABB<class_AABB>` with **)** |
  57. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  58. | :ref:`bool<class_bool>` | :ref:`intersects<class_AABB_method_intersects>` **(** :ref:`AABB<class_AABB>` with **)** |
  59. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  60. | :ref:`bool<class_bool>` | :ref:`intersects_plane<class_AABB_method_intersects_plane>` **(** :ref:`Plane<class_Plane>` plane **)** |
  61. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  62. | :ref:`bool<class_bool>` | :ref:`intersects_segment<class_AABB_method_intersects_segment>` **(** :ref:`Vector3<class_Vector3>` from, :ref:`Vector3<class_Vector3>` to **)** |
  63. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  64. | :ref:`AABB<class_AABB>` | :ref:`merge<class_AABB_method_merge>` **(** :ref:`AABB<class_AABB>` with **)** |
  65. +-------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------+
  66. Description
  67. -----------
  68. AABB consists of a position, a size, and several utility functions. It is typically used for fast overlap tests.
  69. Tutorials
  70. ---------
  71. - :doc:`../tutorials/math/index`
  72. Property Descriptions
  73. ---------------------
  74. .. _class_AABB_property_end:
  75. - :ref:`Vector3<class_Vector3>` **end**
  76. Ending corner.
  77. .. _class_AABB_property_position:
  78. - :ref:`Vector3<class_Vector3>` **position**
  79. Beginning corner.
  80. .. _class_AABB_property_size:
  81. - :ref:`Vector3<class_Vector3>` **size**
  82. Size from position to end.
  83. Method Descriptions
  84. -------------------
  85. .. _class_AABB_method_AABB:
  86. - :ref:`AABB<class_AABB>` **AABB** **(** :ref:`Vector3<class_Vector3>` position, :ref:`Vector3<class_Vector3>` size **)**
  87. Optional constructor, accepts position and size.
  88. .. _class_AABB_method_encloses:
  89. - :ref:`bool<class_bool>` **encloses** **(** :ref:`AABB<class_AABB>` with **)**
  90. Returns ``true`` if this ``AABB`` completely encloses another one.
  91. .. _class_AABB_method_expand:
  92. - :ref:`AABB<class_AABB>` **expand** **(** :ref:`Vector3<class_Vector3>` to_point **)**
  93. Returns this ``AABB`` expanded to include a given point.
  94. .. _class_AABB_method_get_area:
  95. - :ref:`float<class_float>` **get_area** **(** **)**
  96. Gets the area of the ``AABB``.
  97. .. _class_AABB_method_get_endpoint:
  98. - :ref:`Vector3<class_Vector3>` **get_endpoint** **(** :ref:`int<class_int>` idx **)**
  99. Gets the position of the 8 endpoints of the ``AABB`` in space.
  100. .. _class_AABB_method_get_longest_axis:
  101. - :ref:`Vector3<class_Vector3>` **get_longest_axis** **(** **)**
  102. Returns the normalized longest axis of the ``AABB``.
  103. .. _class_AABB_method_get_longest_axis_index:
  104. - :ref:`int<class_int>` **get_longest_axis_index** **(** **)**
  105. Returns the index of the longest axis of the ``AABB`` (according to :ref:`Vector3<class_Vector3>`::AXIS\* enum).
  106. .. _class_AABB_method_get_longest_axis_size:
  107. - :ref:`float<class_float>` **get_longest_axis_size** **(** **)**
  108. Returns the scalar length of the longest axis of the ``AABB``.
  109. .. _class_AABB_method_get_shortest_axis:
  110. - :ref:`Vector3<class_Vector3>` **get_shortest_axis** **(** **)**
  111. Returns the normalized shortest axis of the ``AABB``.
  112. .. _class_AABB_method_get_shortest_axis_index:
  113. - :ref:`int<class_int>` **get_shortest_axis_index** **(** **)**
  114. Returns the index of the shortest axis of the ``AABB`` (according to :ref:`Vector3<class_Vector3>`::AXIS\* enum).
  115. .. _class_AABB_method_get_shortest_axis_size:
  116. - :ref:`float<class_float>` **get_shortest_axis_size** **(** **)**
  117. Returns the scalar length of the shortest axis of the ``AABB``.
  118. .. _class_AABB_method_get_support:
  119. - :ref:`Vector3<class_Vector3>` **get_support** **(** :ref:`Vector3<class_Vector3>` dir **)**
  120. Returns the support point in a given direction. This is useful for collision detection algorithms.
  121. .. _class_AABB_method_grow:
  122. - :ref:`AABB<class_AABB>` **grow** **(** :ref:`float<class_float>` by **)**
  123. Returns a copy of the ``AABB`` grown a given amount of units towards all the sides.
  124. .. _class_AABB_method_has_no_area:
  125. - :ref:`bool<class_bool>` **has_no_area** **(** **)**
  126. Returns ``true`` if the ``AABB`` is flat or empty.
  127. .. _class_AABB_method_has_no_surface:
  128. - :ref:`bool<class_bool>` **has_no_surface** **(** **)**
  129. Returns ``true`` if the ``AABB`` is empty.
  130. .. _class_AABB_method_has_point:
  131. - :ref:`bool<class_bool>` **has_point** **(** :ref:`Vector3<class_Vector3>` point **)**
  132. Returns ``true`` if the ``AABB`` contains a point.
  133. .. _class_AABB_method_intersection:
  134. - :ref:`AABB<class_AABB>` **intersection** **(** :ref:`AABB<class_AABB>` with **)**
  135. Returns the intersection between two ``AABB``. An empty AABB (size 0,0,0) is returned on failure.
  136. .. _class_AABB_method_intersects:
  137. - :ref:`bool<class_bool>` **intersects** **(** :ref:`AABB<class_AABB>` with **)**
  138. Returns ``true`` if the ``AABB`` overlaps with another.
  139. .. _class_AABB_method_intersects_plane:
  140. - :ref:`bool<class_bool>` **intersects_plane** **(** :ref:`Plane<class_Plane>` plane **)**
  141. Returns ``true`` if the ``AABB`` is on both sides of a plane.
  142. .. _class_AABB_method_intersects_segment:
  143. - :ref:`bool<class_bool>` **intersects_segment** **(** :ref:`Vector3<class_Vector3>` from, :ref:`Vector3<class_Vector3>` to **)**
  144. Returns ``true`` if the ``AABB`` intersects the line segment between ``from`` and ``to``.
  145. .. _class_AABB_method_merge:
  146. - :ref:`AABB<class_AABB>` **merge** **(** :ref:`AABB<class_AABB>` with **)**
  147. Returns a larger AABB that contains this AABB and ``with``.