class_aabb.rst 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  2. .. DO NOT EDIT THIS FILE, but the AABB.xml source instead.
  3. .. The source is found in doc/classes or modules/<name>/doc_classes.
  4. .. _class_AABB:
  5. AABB
  6. ====
  7. **Category:** Built-In Types
  8. Brief Description
  9. -----------------
  10. Axis-Aligned Bounding Box.
  11. Member Functions
  12. ----------------
  13. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  14. | :ref:`AABB<class_aabb>` | :ref:`AABB<class_AABB_AABB>` **(** :ref:`Vector3<class_vector3>` position, :ref:`Vector3<class_vector3>` size **)** |
  15. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  16. | :ref:`bool<class_bool>` | :ref:`encloses<class_AABB_encloses>` **(** :ref:`AABB<class_aabb>` with **)** |
  17. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  18. | :ref:`AABB<class_aabb>` | :ref:`expand<class_AABB_expand>` **(** :ref:`Vector3<class_vector3>` to_point **)** |
  19. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  20. | :ref:`float<class_float>` | :ref:`get_area<class_AABB_get_area>` **(** **)** |
  21. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  22. | :ref:`Vector3<class_vector3>` | :ref:`get_endpoint<class_AABB_get_endpoint>` **(** :ref:`int<class_int>` idx **)** |
  23. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  24. | :ref:`Vector3<class_vector3>` | :ref:`get_longest_axis<class_AABB_get_longest_axis>` **(** **)** |
  25. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  26. | :ref:`int<class_int>` | :ref:`get_longest_axis_index<class_AABB_get_longest_axis_index>` **(** **)** |
  27. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  28. | :ref:`float<class_float>` | :ref:`get_longest_axis_size<class_AABB_get_longest_axis_size>` **(** **)** |
  29. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  30. | :ref:`Vector3<class_vector3>` | :ref:`get_shortest_axis<class_AABB_get_shortest_axis>` **(** **)** |
  31. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  32. | :ref:`int<class_int>` | :ref:`get_shortest_axis_index<class_AABB_get_shortest_axis_index>` **(** **)** |
  33. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  34. | :ref:`float<class_float>` | :ref:`get_shortest_axis_size<class_AABB_get_shortest_axis_size>` **(** **)** |
  35. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  36. | :ref:`Vector3<class_vector3>` | :ref:`get_support<class_AABB_get_support>` **(** :ref:`Vector3<class_vector3>` dir **)** |
  37. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  38. | :ref:`AABB<class_aabb>` | :ref:`grow<class_AABB_grow>` **(** :ref:`float<class_float>` by **)** |
  39. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  40. | :ref:`bool<class_bool>` | :ref:`has_no_area<class_AABB_has_no_area>` **(** **)** |
  41. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  42. | :ref:`bool<class_bool>` | :ref:`has_no_surface<class_AABB_has_no_surface>` **(** **)** |
  43. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  44. | :ref:`bool<class_bool>` | :ref:`has_point<class_AABB_has_point>` **(** :ref:`Vector3<class_vector3>` point **)** |
  45. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`AABB<class_aabb>` | :ref:`intersection<class_AABB_intersection>` **(** :ref:`AABB<class_aabb>` with **)** |
  47. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  48. | :ref:`bool<class_bool>` | :ref:`intersects<class_AABB_intersects>` **(** :ref:`AABB<class_aabb>` with **)** |
  49. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`bool<class_bool>` | :ref:`intersects_plane<class_AABB_intersects_plane>` **(** :ref:`Plane<class_plane>` plane **)** |
  51. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`bool<class_bool>` | :ref:`intersects_segment<class_AABB_intersects_segment>` **(** :ref:`Vector3<class_vector3>` from, :ref:`Vector3<class_vector3>` to **)** |
  53. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`AABB<class_aabb>` | :ref:`merge<class_AABB_merge>` **(** :ref:`AABB<class_aabb>` with **)** |
  55. +--------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------+
  56. Member Variables
  57. ----------------
  58. .. _class_AABB_end:
  59. - :ref:`Vector3<class_vector3>` **end** - Ending corner.
  60. .. _class_AABB_position:
  61. - :ref:`Vector3<class_vector3>` **position** - Beginning corner.
  62. .. _class_AABB_size:
  63. - :ref:`Vector3<class_vector3>` **size** - Size from position to end.
  64. Description
  65. -----------
  66. AABB consists of a position, a size, and several utility functions. It is typically used for fast overlap tests.
  67. Member Function Description
  68. ---------------------------
  69. .. _class_AABB_AABB:
  70. - :ref:`AABB<class_aabb>` **AABB** **(** :ref:`Vector3<class_vector3>` position, :ref:`Vector3<class_vector3>` size **)**
  71. Optional constructor, accepts position and size.
  72. .. _class_AABB_encloses:
  73. - :ref:`bool<class_bool>` **encloses** **(** :ref:`AABB<class_aabb>` with **)**
  74. Returns ``true`` if this ``AABB`` completely encloses another one.
  75. .. _class_AABB_expand:
  76. - :ref:`AABB<class_aabb>` **expand** **(** :ref:`Vector3<class_vector3>` to_point **)**
  77. Returns this ``AABB`` expanded to include a given point.
  78. .. _class_AABB_get_area:
  79. - :ref:`float<class_float>` **get_area** **(** **)**
  80. Gets the area of the ``AABB``.
  81. .. _class_AABB_get_endpoint:
  82. - :ref:`Vector3<class_vector3>` **get_endpoint** **(** :ref:`int<class_int>` idx **)**
  83. Gets the position of the 8 endpoints of the ``AABB`` in space.
  84. .. _class_AABB_get_longest_axis:
  85. - :ref:`Vector3<class_vector3>` **get_longest_axis** **(** **)**
  86. Returns the normalized longest axis of the ``AABB``.
  87. .. _class_AABB_get_longest_axis_index:
  88. - :ref:`int<class_int>` **get_longest_axis_index** **(** **)**
  89. Returns the index of the longest axis of the ``AABB`` (according to :ref:`Vector3<class_vector3>`::AXIS\* enum).
  90. .. _class_AABB_get_longest_axis_size:
  91. - :ref:`float<class_float>` **get_longest_axis_size** **(** **)**
  92. Returns the scalar length of the longest axis of the ``AABB``.
  93. .. _class_AABB_get_shortest_axis:
  94. - :ref:`Vector3<class_vector3>` **get_shortest_axis** **(** **)**
  95. Returns the normalized shortest axis of the ``AABB``.
  96. .. _class_AABB_get_shortest_axis_index:
  97. - :ref:`int<class_int>` **get_shortest_axis_index** **(** **)**
  98. Returns the index of the shortest axis of the ``AABB`` (according to :ref:`Vector3<class_vector3>`::AXIS\* enum).
  99. .. _class_AABB_get_shortest_axis_size:
  100. - :ref:`float<class_float>` **get_shortest_axis_size** **(** **)**
  101. Returns the scalar length of the shortest axis of the ``AABB``.
  102. .. _class_AABB_get_support:
  103. - :ref:`Vector3<class_vector3>` **get_support** **(** :ref:`Vector3<class_vector3>` dir **)**
  104. Returns the support point in a given direction. This is useful for collision detection algorithms.
  105. .. _class_AABB_grow:
  106. - :ref:`AABB<class_aabb>` **grow** **(** :ref:`float<class_float>` by **)**
  107. Returns a copy of the ``AABB`` grown a given amount of units towards all the sides.
  108. .. _class_AABB_has_no_area:
  109. - :ref:`bool<class_bool>` **has_no_area** **(** **)**
  110. Returns ``true`` if the ``AABB`` is flat or empty.
  111. .. _class_AABB_has_no_surface:
  112. - :ref:`bool<class_bool>` **has_no_surface** **(** **)**
  113. Returns ``true`` if the ``AABB`` is empty.
  114. .. _class_AABB_has_point:
  115. - :ref:`bool<class_bool>` **has_point** **(** :ref:`Vector3<class_vector3>` point **)**
  116. Returns ``true`` if the ``AABB`` contains a point.
  117. .. _class_AABB_intersection:
  118. - :ref:`AABB<class_aabb>` **intersection** **(** :ref:`AABB<class_aabb>` with **)**
  119. Returns the intersection between two ``AABB``. An empty AABB (size 0,0,0) is returned on failure.
  120. .. _class_AABB_intersects:
  121. - :ref:`bool<class_bool>` **intersects** **(** :ref:`AABB<class_aabb>` with **)**
  122. Returns ``true`` if the ``AABB`` overlaps with another.
  123. .. _class_AABB_intersects_plane:
  124. - :ref:`bool<class_bool>` **intersects_plane** **(** :ref:`Plane<class_plane>` plane **)**
  125. Returns ``true`` if the ``AABB`` is on both sides of a plane.
  126. .. _class_AABB_intersects_segment:
  127. - :ref:`bool<class_bool>` **intersects_segment** **(** :ref:`Vector3<class_vector3>` from, :ref:`Vector3<class_vector3>` to **)**
  128. Returns ``true`` if the ``AABB`` intersects the line segment between ``from`` and ``to``.
  129. .. _class_AABB_merge:
  130. - :ref:`AABB<class_aabb>` **merge** **(** :ref:`AABB<class_aabb>` with **)**
  131. Returns a larger AABB that contains this AABB and ``with``.