class_aabb.rst 12 KB

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