class_packedvector3array.rst 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  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/PackedVector3Array.xml.
  6. .. _class_PackedVector3Array:
  7. PackedVector3Array
  8. ==================
  9. A packed array of :ref:`Vector3<class_Vector3>`\ s.
  10. .. rst-class:: classref-introduction-group
  11. Description
  12. -----------
  13. An array specifically designed to hold :ref:`Vector3<class_Vector3>`. Packs data tightly, so it saves memory for large array sizes.
  14. .. rst-class:: classref-reftable-group
  15. Constructors
  16. ------------
  17. .. table::
  18. :widths: auto
  19. +-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+
  20. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`PackedVector3Array<class_PackedVector3Array_constructor_PackedVector3Array>` **(** **)** |
  21. +-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+
  22. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`PackedVector3Array<class_PackedVector3Array_constructor_PackedVector3Array>` **(** :ref:`PackedVector3Array<class_PackedVector3Array>` from **)** |
  23. +-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+
  24. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`PackedVector3Array<class_PackedVector3Array_constructor_PackedVector3Array>` **(** :ref:`Array<class_Array>` from **)** |
  25. +-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+
  26. .. rst-class:: classref-reftable-group
  27. Methods
  28. -------
  29. .. table::
  30. :widths: auto
  31. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  32. | :ref:`bool<class_bool>` | :ref:`append<class_PackedVector3Array_method_append>` **(** :ref:`Vector3<class_Vector3>` value **)** |
  33. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  34. | void | :ref:`append_array<class_PackedVector3Array_method_append_array>` **(** :ref:`PackedVector3Array<class_PackedVector3Array>` array **)** |
  35. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  36. | :ref:`int<class_int>` | :ref:`bsearch<class_PackedVector3Array_method_bsearch>` **(** :ref:`Vector3<class_Vector3>` value, :ref:`bool<class_bool>` before=true **)** |
  37. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  38. | void | :ref:`clear<class_PackedVector3Array_method_clear>` **(** **)** |
  39. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  40. | :ref:`int<class_int>` | :ref:`count<class_PackedVector3Array_method_count>` **(** :ref:`Vector3<class_Vector3>` value **)** |const| |
  41. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  42. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`duplicate<class_PackedVector3Array_method_duplicate>` **(** **)** |
  43. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  44. | void | :ref:`fill<class_PackedVector3Array_method_fill>` **(** :ref:`Vector3<class_Vector3>` value **)** |
  45. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`int<class_int>` | :ref:`find<class_PackedVector3Array_method_find>` **(** :ref:`Vector3<class_Vector3>` value, :ref:`int<class_int>` from=0 **)** |const| |
  47. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  48. | :ref:`bool<class_bool>` | :ref:`has<class_PackedVector3Array_method_has>` **(** :ref:`Vector3<class_Vector3>` value **)** |const| |
  49. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`int<class_int>` | :ref:`insert<class_PackedVector3Array_method_insert>` **(** :ref:`int<class_int>` at_index, :ref:`Vector3<class_Vector3>` value **)** |
  51. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`bool<class_bool>` | :ref:`is_empty<class_PackedVector3Array_method_is_empty>` **(** **)** |const| |
  53. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`bool<class_bool>` | :ref:`push_back<class_PackedVector3Array_method_push_back>` **(** :ref:`Vector3<class_Vector3>` value **)** |
  55. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  56. | void | :ref:`remove_at<class_PackedVector3Array_method_remove_at>` **(** :ref:`int<class_int>` index **)** |
  57. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  58. | :ref:`int<class_int>` | :ref:`resize<class_PackedVector3Array_method_resize>` **(** :ref:`int<class_int>` new_size **)** |
  59. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  60. | void | :ref:`reverse<class_PackedVector3Array_method_reverse>` **(** **)** |
  61. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  62. | :ref:`int<class_int>` | :ref:`rfind<class_PackedVector3Array_method_rfind>` **(** :ref:`Vector3<class_Vector3>` value, :ref:`int<class_int>` from=-1 **)** |const| |
  63. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  64. | void | :ref:`set<class_PackedVector3Array_method_set>` **(** :ref:`int<class_int>` index, :ref:`Vector3<class_Vector3>` value **)** |
  65. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  66. | :ref:`int<class_int>` | :ref:`size<class_PackedVector3Array_method_size>` **(** **)** |const| |
  67. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  68. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`slice<class_PackedVector3Array_method_slice>` **(** :ref:`int<class_int>` begin, :ref:`int<class_int>` end=2147483647 **)** |const| |
  69. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  70. | void | :ref:`sort<class_PackedVector3Array_method_sort>` **(** **)** |
  71. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  72. | :ref:`PackedByteArray<class_PackedByteArray>` | :ref:`to_byte_array<class_PackedVector3Array_method_to_byte_array>` **(** **)** |const| |
  73. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  74. .. rst-class:: classref-reftable-group
  75. Operators
  76. ---------
  77. .. table::
  78. :widths: auto
  79. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------+
  80. | :ref:`bool<class_bool>` | :ref:`operator !=<class_PackedVector3Array_operator_neq_PackedVector3Array>` **(** :ref:`PackedVector3Array<class_PackedVector3Array>` right **)** |
  81. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------+
  82. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`operator *<class_PackedVector3Array_operator_mul_Transform3D>` **(** :ref:`Transform3D<class_Transform3D>` right **)** |
  83. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | :ref:`PackedVector3Array<class_PackedVector3Array>` | :ref:`operator +<class_PackedVector3Array_operator_sum_PackedVector3Array>` **(** :ref:`PackedVector3Array<class_PackedVector3Array>` right **)** |
  85. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------+
  86. | :ref:`bool<class_bool>` | :ref:`operator ==<class_PackedVector3Array_operator_eq_PackedVector3Array>` **(** :ref:`PackedVector3Array<class_PackedVector3Array>` right **)** |
  87. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------+
  88. | :ref:`Vector3<class_Vector3>` | :ref:`operator []<class_PackedVector3Array_operator_idx_int>` **(** :ref:`int<class_int>` index **)** |
  89. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------+
  90. .. rst-class:: classref-section-separator
  91. ----
  92. .. rst-class:: classref-descriptions-group
  93. Constructor Descriptions
  94. ------------------------
  95. .. _class_PackedVector3Array_constructor_PackedVector3Array:
  96. .. rst-class:: classref-constructor
  97. :ref:`PackedVector3Array<class_PackedVector3Array>` **PackedVector3Array** **(** **)**
  98. Constructs an empty **PackedVector3Array**.
  99. .. rst-class:: classref-item-separator
  100. ----
  101. .. rst-class:: classref-constructor
  102. :ref:`PackedVector3Array<class_PackedVector3Array>` **PackedVector3Array** **(** :ref:`PackedVector3Array<class_PackedVector3Array>` from **)**
  103. Constructs a **PackedVector3Array** as a copy of the given **PackedVector3Array**.
  104. .. rst-class:: classref-item-separator
  105. ----
  106. .. rst-class:: classref-constructor
  107. :ref:`PackedVector3Array<class_PackedVector3Array>` **PackedVector3Array** **(** :ref:`Array<class_Array>` from **)**
  108. Constructs a new **PackedVector3Array**. Optionally, you can pass in a generic :ref:`Array<class_Array>` that will be converted.
  109. .. rst-class:: classref-section-separator
  110. ----
  111. .. rst-class:: classref-descriptions-group
  112. Method Descriptions
  113. -------------------
  114. .. _class_PackedVector3Array_method_append:
  115. .. rst-class:: classref-method
  116. :ref:`bool<class_bool>` **append** **(** :ref:`Vector3<class_Vector3>` value **)**
  117. Appends an element at the end of the array (alias of :ref:`push_back<class_PackedVector3Array_method_push_back>`).
  118. .. rst-class:: classref-item-separator
  119. ----
  120. .. _class_PackedVector3Array_method_append_array:
  121. .. rst-class:: classref-method
  122. void **append_array** **(** :ref:`PackedVector3Array<class_PackedVector3Array>` array **)**
  123. Appends a **PackedVector3Array** at the end of this array.
  124. .. rst-class:: classref-item-separator
  125. ----
  126. .. _class_PackedVector3Array_method_bsearch:
  127. .. rst-class:: classref-method
  128. :ref:`int<class_int>` **bsearch** **(** :ref:`Vector3<class_Vector3>` value, :ref:`bool<class_bool>` before=true **)**
  129. Finds the index of an existing value (or the insertion index that maintains sorting order, if the value is not yet present in the array) using binary search. Optionally, a ``before`` specifier can be passed. If ``false``, the returned index comes after all existing entries of the value in the array.
  130. \ **Note:** Calling :ref:`bsearch<class_PackedVector3Array_method_bsearch>` on an unsorted array results in unexpected behavior.
  131. .. rst-class:: classref-item-separator
  132. ----
  133. .. _class_PackedVector3Array_method_clear:
  134. .. rst-class:: classref-method
  135. void **clear** **(** **)**
  136. Clears the array. This is equivalent to using :ref:`resize<class_PackedVector3Array_method_resize>` with a size of ``0``.
  137. .. rst-class:: classref-item-separator
  138. ----
  139. .. _class_PackedVector3Array_method_count:
  140. .. rst-class:: classref-method
  141. :ref:`int<class_int>` **count** **(** :ref:`Vector3<class_Vector3>` value **)** |const|
  142. Returns the number of times an element is in the array.
  143. .. rst-class:: classref-item-separator
  144. ----
  145. .. _class_PackedVector3Array_method_duplicate:
  146. .. rst-class:: classref-method
  147. :ref:`PackedVector3Array<class_PackedVector3Array>` **duplicate** **(** **)**
  148. Creates a copy of the array, and returns it.
  149. .. rst-class:: classref-item-separator
  150. ----
  151. .. _class_PackedVector3Array_method_fill:
  152. .. rst-class:: classref-method
  153. void **fill** **(** :ref:`Vector3<class_Vector3>` value **)**
  154. Assigns the given value to all elements in the array. This can typically be used together with :ref:`resize<class_PackedVector3Array_method_resize>` to create an array with a given size and initialized elements.
  155. .. rst-class:: classref-item-separator
  156. ----
  157. .. _class_PackedVector3Array_method_find:
  158. .. rst-class:: classref-method
  159. :ref:`int<class_int>` **find** **(** :ref:`Vector3<class_Vector3>` value, :ref:`int<class_int>` from=0 **)** |const|
  160. Searches the array for a value and returns its index or ``-1`` if not found. Optionally, the initial search index can be passed.
  161. .. rst-class:: classref-item-separator
  162. ----
  163. .. _class_PackedVector3Array_method_has:
  164. .. rst-class:: classref-method
  165. :ref:`bool<class_bool>` **has** **(** :ref:`Vector3<class_Vector3>` value **)** |const|
  166. Returns ``true`` if the array contains ``value``.
  167. .. rst-class:: classref-item-separator
  168. ----
  169. .. _class_PackedVector3Array_method_insert:
  170. .. rst-class:: classref-method
  171. :ref:`int<class_int>` **insert** **(** :ref:`int<class_int>` at_index, :ref:`Vector3<class_Vector3>` value **)**
  172. Inserts a new element at a given position in the array. The position must be valid, or at the end of the array (``idx == size()``).
  173. .. rst-class:: classref-item-separator
  174. ----
  175. .. _class_PackedVector3Array_method_is_empty:
  176. .. rst-class:: classref-method
  177. :ref:`bool<class_bool>` **is_empty** **(** **)** |const|
  178. Returns ``true`` if the array is empty.
  179. .. rst-class:: classref-item-separator
  180. ----
  181. .. _class_PackedVector3Array_method_push_back:
  182. .. rst-class:: classref-method
  183. :ref:`bool<class_bool>` **push_back** **(** :ref:`Vector3<class_Vector3>` value **)**
  184. Inserts a :ref:`Vector3<class_Vector3>` at the end.
  185. .. rst-class:: classref-item-separator
  186. ----
  187. .. _class_PackedVector3Array_method_remove_at:
  188. .. rst-class:: classref-method
  189. void **remove_at** **(** :ref:`int<class_int>` index **)**
  190. Removes an element from the array by index.
  191. .. rst-class:: classref-item-separator
  192. ----
  193. .. _class_PackedVector3Array_method_resize:
  194. .. rst-class:: classref-method
  195. :ref:`int<class_int>` **resize** **(** :ref:`int<class_int>` new_size **)**
  196. Sets the size of the array. If the array is grown, reserves elements at the end of the array. If the array is shrunk, truncates the array to the new size.
  197. .. rst-class:: classref-item-separator
  198. ----
  199. .. _class_PackedVector3Array_method_reverse:
  200. .. rst-class:: classref-method
  201. void **reverse** **(** **)**
  202. Reverses the order of the elements in the array.
  203. .. rst-class:: classref-item-separator
  204. ----
  205. .. _class_PackedVector3Array_method_rfind:
  206. .. rst-class:: classref-method
  207. :ref:`int<class_int>` **rfind** **(** :ref:`Vector3<class_Vector3>` value, :ref:`int<class_int>` from=-1 **)** |const|
  208. Searches the array in reverse order. Optionally, a start search index can be passed. If negative, the start index is considered relative to the end of the array.
  209. .. rst-class:: classref-item-separator
  210. ----
  211. .. _class_PackedVector3Array_method_set:
  212. .. rst-class:: classref-method
  213. void **set** **(** :ref:`int<class_int>` index, :ref:`Vector3<class_Vector3>` value **)**
  214. Changes the :ref:`Vector3<class_Vector3>` at the given index.
  215. .. rst-class:: classref-item-separator
  216. ----
  217. .. _class_PackedVector3Array_method_size:
  218. .. rst-class:: classref-method
  219. :ref:`int<class_int>` **size** **(** **)** |const|
  220. Returns the number of elements in the array.
  221. .. rst-class:: classref-item-separator
  222. ----
  223. .. _class_PackedVector3Array_method_slice:
  224. .. rst-class:: classref-method
  225. :ref:`PackedVector3Array<class_PackedVector3Array>` **slice** **(** :ref:`int<class_int>` begin, :ref:`int<class_int>` end=2147483647 **)** |const|
  226. Returns the slice of the **PackedVector3Array**, from ``begin`` (inclusive) to ``end`` (exclusive), as a new **PackedVector3Array**.
  227. The absolute value of ``begin`` and ``end`` will be clamped to the array size, so the default value for ``end`` makes it slice to the size of the array by default (i.e. ``arr.slice(1)`` is a shorthand for ``arr.slice(1, arr.size())``).
  228. If either ``begin`` or ``end`` are negative, they will be relative to the end of the array (i.e. ``arr.slice(0, -2)`` is a shorthand for ``arr.slice(0, arr.size() - 2)``).
  229. .. rst-class:: classref-item-separator
  230. ----
  231. .. _class_PackedVector3Array_method_sort:
  232. .. rst-class:: classref-method
  233. void **sort** **(** **)**
  234. Sorts the elements of the array in ascending order.
  235. .. rst-class:: classref-item-separator
  236. ----
  237. .. _class_PackedVector3Array_method_to_byte_array:
  238. .. rst-class:: classref-method
  239. :ref:`PackedByteArray<class_PackedByteArray>` **to_byte_array** **(** **)** |const|
  240. Returns a :ref:`PackedByteArray<class_PackedByteArray>` with each vector encoded as bytes.
  241. .. rst-class:: classref-section-separator
  242. ----
  243. .. rst-class:: classref-descriptions-group
  244. Operator Descriptions
  245. ---------------------
  246. .. _class_PackedVector3Array_operator_neq_PackedVector3Array:
  247. .. rst-class:: classref-operator
  248. :ref:`bool<class_bool>` **operator !=** **(** :ref:`PackedVector3Array<class_PackedVector3Array>` right **)**
  249. Returns ``true`` if contents of the arrays differ.
  250. .. rst-class:: classref-item-separator
  251. ----
  252. .. _class_PackedVector3Array_operator_mul_Transform3D:
  253. .. rst-class:: classref-operator
  254. :ref:`PackedVector3Array<class_PackedVector3Array>` **operator *** **(** :ref:`Transform3D<class_Transform3D>` right **)**
  255. Transforms (multiplies) all vectors in the array by the :ref:`Transform3D<class_Transform3D>` matrix.
  256. .. rst-class:: classref-item-separator
  257. ----
  258. .. _class_PackedVector3Array_operator_sum_PackedVector3Array:
  259. .. rst-class:: classref-operator
  260. :ref:`PackedVector3Array<class_PackedVector3Array>` **operator +** **(** :ref:`PackedVector3Array<class_PackedVector3Array>` right **)**
  261. Returns a new **PackedVector3Array** with contents of ``right`` added at the end of this array. For better performance, consider using :ref:`append_array<class_PackedVector3Array_method_append_array>` instead.
  262. .. rst-class:: classref-item-separator
  263. ----
  264. .. _class_PackedVector3Array_operator_eq_PackedVector3Array:
  265. .. rst-class:: classref-operator
  266. :ref:`bool<class_bool>` **operator ==** **(** :ref:`PackedVector3Array<class_PackedVector3Array>` right **)**
  267. Returns ``true`` if contents of both arrays are the same, i.e. they have all equal :ref:`Vector3<class_Vector3>`\ s at the corresponding indices.
  268. .. rst-class:: classref-item-separator
  269. ----
  270. .. _class_PackedVector3Array_operator_idx_int:
  271. .. rst-class:: classref-operator
  272. :ref:`Vector3<class_Vector3>` **operator []** **(** :ref:`int<class_int>` index **)**
  273. Returns the :ref:`Vector3<class_Vector3>` at index ``index``. Negative indices can be used to access the elements starting from the end. Using index out of array's bounds will result in an error.
  274. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  275. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  276. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  277. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  278. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  279. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`