class_packedvector2array.rst 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  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/4.1/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/PackedVector2Array.xml.
  6. .. _class_PackedVector2Array:
  7. PackedVector2Array
  8. ==================
  9. A packed array of :ref:`Vector2<class_Vector2>`\ s.
  10. .. rst-class:: classref-introduction-group
  11. Description
  12. -----------
  13. An array specifically designed to hold :ref:`Vector2<class_Vector2>`. Packs data tightly, so it saves memory for large array sizes.
  14. .. rst-class:: classref-introduction-group
  15. Tutorials
  16. ---------
  17. - `2D Navigation Astar Demo <https://godotengine.org/asset-library/asset/519>`__
  18. .. rst-class:: classref-reftable-group
  19. Constructors
  20. ------------
  21. .. table::
  22. :widths: auto
  23. +-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+
  24. | :ref:`PackedVector2Array<class_PackedVector2Array>` | :ref:`PackedVector2Array<class_PackedVector2Array_constructor_PackedVector2Array>` **(** **)** |
  25. +-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+
  26. | :ref:`PackedVector2Array<class_PackedVector2Array>` | :ref:`PackedVector2Array<class_PackedVector2Array_constructor_PackedVector2Array>` **(** :ref:`PackedVector2Array<class_PackedVector2Array>` from **)** |
  27. +-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+
  28. | :ref:`PackedVector2Array<class_PackedVector2Array>` | :ref:`PackedVector2Array<class_PackedVector2Array_constructor_PackedVector2Array>` **(** :ref:`Array<class_Array>` from **)** |
  29. +-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------+
  30. .. rst-class:: classref-reftable-group
  31. Methods
  32. -------
  33. .. table::
  34. :widths: auto
  35. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  36. | :ref:`bool<class_bool>` | :ref:`append<class_PackedVector2Array_method_append>` **(** :ref:`Vector2<class_Vector2>` value **)** |
  37. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  38. | void | :ref:`append_array<class_PackedVector2Array_method_append_array>` **(** :ref:`PackedVector2Array<class_PackedVector2Array>` array **)** |
  39. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  40. | :ref:`int<class_int>` | :ref:`bsearch<class_PackedVector2Array_method_bsearch>` **(** :ref:`Vector2<class_Vector2>` value, :ref:`bool<class_bool>` before=true **)** |
  41. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  42. | void | :ref:`clear<class_PackedVector2Array_method_clear>` **(** **)** |
  43. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  44. | :ref:`int<class_int>` | :ref:`count<class_PackedVector2Array_method_count>` **(** :ref:`Vector2<class_Vector2>` value **)** |const| |
  45. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`PackedVector2Array<class_PackedVector2Array>` | :ref:`duplicate<class_PackedVector2Array_method_duplicate>` **(** **)** |
  47. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  48. | void | :ref:`fill<class_PackedVector2Array_method_fill>` **(** :ref:`Vector2<class_Vector2>` value **)** |
  49. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`int<class_int>` | :ref:`find<class_PackedVector2Array_method_find>` **(** :ref:`Vector2<class_Vector2>` value, :ref:`int<class_int>` from=0 **)** |const| |
  51. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`bool<class_bool>` | :ref:`has<class_PackedVector2Array_method_has>` **(** :ref:`Vector2<class_Vector2>` value **)** |const| |
  53. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  54. | :ref:`int<class_int>` | :ref:`insert<class_PackedVector2Array_method_insert>` **(** :ref:`int<class_int>` at_index, :ref:`Vector2<class_Vector2>` value **)** |
  55. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  56. | :ref:`bool<class_bool>` | :ref:`is_empty<class_PackedVector2Array_method_is_empty>` **(** **)** |const| |
  57. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  58. | :ref:`bool<class_bool>` | :ref:`push_back<class_PackedVector2Array_method_push_back>` **(** :ref:`Vector2<class_Vector2>` value **)** |
  59. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  60. | void | :ref:`remove_at<class_PackedVector2Array_method_remove_at>` **(** :ref:`int<class_int>` index **)** |
  61. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  62. | :ref:`int<class_int>` | :ref:`resize<class_PackedVector2Array_method_resize>` **(** :ref:`int<class_int>` new_size **)** |
  63. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  64. | void | :ref:`reverse<class_PackedVector2Array_method_reverse>` **(** **)** |
  65. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  66. | :ref:`int<class_int>` | :ref:`rfind<class_PackedVector2Array_method_rfind>` **(** :ref:`Vector2<class_Vector2>` value, :ref:`int<class_int>` from=-1 **)** |const| |
  67. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  68. | void | :ref:`set<class_PackedVector2Array_method_set>` **(** :ref:`int<class_int>` index, :ref:`Vector2<class_Vector2>` value **)** |
  69. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  70. | :ref:`int<class_int>` | :ref:`size<class_PackedVector2Array_method_size>` **(** **)** |const| |
  71. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  72. | :ref:`PackedVector2Array<class_PackedVector2Array>` | :ref:`slice<class_PackedVector2Array_method_slice>` **(** :ref:`int<class_int>` begin, :ref:`int<class_int>` end=2147483647 **)** |const| |
  73. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  74. | void | :ref:`sort<class_PackedVector2Array_method_sort>` **(** **)** |
  75. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  76. | :ref:`PackedByteArray<class_PackedByteArray>` | :ref:`to_byte_array<class_PackedVector2Array_method_to_byte_array>` **(** **)** |const| |
  77. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------+
  78. .. rst-class:: classref-reftable-group
  79. Operators
  80. ---------
  81. .. table::
  82. :widths: auto
  83. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | :ref:`bool<class_bool>` | :ref:`operator !=<class_PackedVector2Array_operator_neq_PackedVector2Array>` **(** :ref:`PackedVector2Array<class_PackedVector2Array>` right **)** |
  85. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------+
  86. | :ref:`PackedVector2Array<class_PackedVector2Array>` | :ref:`operator *<class_PackedVector2Array_operator_mul_Transform2D>` **(** :ref:`Transform2D<class_Transform2D>` right **)** |
  87. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------+
  88. | :ref:`PackedVector2Array<class_PackedVector2Array>` | :ref:`operator +<class_PackedVector2Array_operator_sum_PackedVector2Array>` **(** :ref:`PackedVector2Array<class_PackedVector2Array>` right **)** |
  89. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------+
  90. | :ref:`bool<class_bool>` | :ref:`operator ==<class_PackedVector2Array_operator_eq_PackedVector2Array>` **(** :ref:`PackedVector2Array<class_PackedVector2Array>` right **)** |
  91. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------+
  92. | :ref:`Vector2<class_Vector2>` | :ref:`operator []<class_PackedVector2Array_operator_idx_int>` **(** :ref:`int<class_int>` index **)** |
  93. +-----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------+
  94. .. rst-class:: classref-section-separator
  95. ----
  96. .. rst-class:: classref-descriptions-group
  97. Constructor Descriptions
  98. ------------------------
  99. .. _class_PackedVector2Array_constructor_PackedVector2Array:
  100. .. rst-class:: classref-constructor
  101. :ref:`PackedVector2Array<class_PackedVector2Array>` **PackedVector2Array** **(** **)**
  102. Constructs an empty **PackedVector2Array**.
  103. .. rst-class:: classref-item-separator
  104. ----
  105. .. rst-class:: classref-constructor
  106. :ref:`PackedVector2Array<class_PackedVector2Array>` **PackedVector2Array** **(** :ref:`PackedVector2Array<class_PackedVector2Array>` from **)**
  107. Constructs a **PackedVector2Array** as a copy of the given **PackedVector2Array**.
  108. .. rst-class:: classref-item-separator
  109. ----
  110. .. rst-class:: classref-constructor
  111. :ref:`PackedVector2Array<class_PackedVector2Array>` **PackedVector2Array** **(** :ref:`Array<class_Array>` from **)**
  112. Constructs a new **PackedVector2Array**. Optionally, you can pass in a generic :ref:`Array<class_Array>` that will be converted.
  113. \ **Note:** When initializing a **PackedVector2Array** with elements, it must be initialized with an :ref:`Array<class_Array>` of :ref:`Vector2<class_Vector2>` values:
  114. ::
  115. var array = PackedVector2Array([Vector2(12, 34), Vector2(56, 78)])
  116. .. rst-class:: classref-section-separator
  117. ----
  118. .. rst-class:: classref-descriptions-group
  119. Method Descriptions
  120. -------------------
  121. .. _class_PackedVector2Array_method_append:
  122. .. rst-class:: classref-method
  123. :ref:`bool<class_bool>` **append** **(** :ref:`Vector2<class_Vector2>` value **)**
  124. Appends an element at the end of the array (alias of :ref:`push_back<class_PackedVector2Array_method_push_back>`).
  125. .. rst-class:: classref-item-separator
  126. ----
  127. .. _class_PackedVector2Array_method_append_array:
  128. .. rst-class:: classref-method
  129. void **append_array** **(** :ref:`PackedVector2Array<class_PackedVector2Array>` array **)**
  130. Appends a **PackedVector2Array** at the end of this array.
  131. .. rst-class:: classref-item-separator
  132. ----
  133. .. _class_PackedVector2Array_method_bsearch:
  134. .. rst-class:: classref-method
  135. :ref:`int<class_int>` **bsearch** **(** :ref:`Vector2<class_Vector2>` value, :ref:`bool<class_bool>` before=true **)**
  136. 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.
  137. \ **Note:** Calling :ref:`bsearch<class_PackedVector2Array_method_bsearch>` on an unsorted array results in unexpected behavior.
  138. \ **Note:** Vectors with :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` elements don't behave the same as other vectors. Therefore, the results from this method may not be accurate if NaNs are included.
  139. .. rst-class:: classref-item-separator
  140. ----
  141. .. _class_PackedVector2Array_method_clear:
  142. .. rst-class:: classref-method
  143. void **clear** **(** **)**
  144. Clears the array. This is equivalent to using :ref:`resize<class_PackedVector2Array_method_resize>` with a size of ``0``.
  145. .. rst-class:: classref-item-separator
  146. ----
  147. .. _class_PackedVector2Array_method_count:
  148. .. rst-class:: classref-method
  149. :ref:`int<class_int>` **count** **(** :ref:`Vector2<class_Vector2>` value **)** |const|
  150. Returns the number of times an element is in the array.
  151. \ **Note:** Vectors with :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` elements don't behave the same as other vectors. Therefore, the results from this method may not be accurate if NaNs are included.
  152. .. rst-class:: classref-item-separator
  153. ----
  154. .. _class_PackedVector2Array_method_duplicate:
  155. .. rst-class:: classref-method
  156. :ref:`PackedVector2Array<class_PackedVector2Array>` **duplicate** **(** **)**
  157. Creates a copy of the array, and returns it.
  158. .. rst-class:: classref-item-separator
  159. ----
  160. .. _class_PackedVector2Array_method_fill:
  161. .. rst-class:: classref-method
  162. void **fill** **(** :ref:`Vector2<class_Vector2>` value **)**
  163. Assigns the given value to all elements in the array. This can typically be used together with :ref:`resize<class_PackedVector2Array_method_resize>` to create an array with a given size and initialized elements.
  164. .. rst-class:: classref-item-separator
  165. ----
  166. .. _class_PackedVector2Array_method_find:
  167. .. rst-class:: classref-method
  168. :ref:`int<class_int>` **find** **(** :ref:`Vector2<class_Vector2>` value, :ref:`int<class_int>` from=0 **)** |const|
  169. Searches the array for a value and returns its index or ``-1`` if not found. Optionally, the initial search index can be passed.
  170. \ **Note:** Vectors with :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` elements don't behave the same as other vectors. Therefore, the results from this method may not be accurate if NaNs are included.
  171. .. rst-class:: classref-item-separator
  172. ----
  173. .. _class_PackedVector2Array_method_has:
  174. .. rst-class:: classref-method
  175. :ref:`bool<class_bool>` **has** **(** :ref:`Vector2<class_Vector2>` value **)** |const|
  176. Returns ``true`` if the array contains ``value``.
  177. \ **Note:** Vectors with :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` elements don't behave the same as other vectors. Therefore, the results from this method may not be accurate if NaNs are included.
  178. .. rst-class:: classref-item-separator
  179. ----
  180. .. _class_PackedVector2Array_method_insert:
  181. .. rst-class:: classref-method
  182. :ref:`int<class_int>` **insert** **(** :ref:`int<class_int>` at_index, :ref:`Vector2<class_Vector2>` value **)**
  183. 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()``).
  184. .. rst-class:: classref-item-separator
  185. ----
  186. .. _class_PackedVector2Array_method_is_empty:
  187. .. rst-class:: classref-method
  188. :ref:`bool<class_bool>` **is_empty** **(** **)** |const|
  189. Returns ``true`` if the array is empty.
  190. .. rst-class:: classref-item-separator
  191. ----
  192. .. _class_PackedVector2Array_method_push_back:
  193. .. rst-class:: classref-method
  194. :ref:`bool<class_bool>` **push_back** **(** :ref:`Vector2<class_Vector2>` value **)**
  195. Inserts a :ref:`Vector2<class_Vector2>` at the end.
  196. .. rst-class:: classref-item-separator
  197. ----
  198. .. _class_PackedVector2Array_method_remove_at:
  199. .. rst-class:: classref-method
  200. void **remove_at** **(** :ref:`int<class_int>` index **)**
  201. Removes an element from the array by index.
  202. .. rst-class:: classref-item-separator
  203. ----
  204. .. _class_PackedVector2Array_method_resize:
  205. .. rst-class:: classref-method
  206. :ref:`int<class_int>` **resize** **(** :ref:`int<class_int>` new_size **)**
  207. 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.
  208. .. rst-class:: classref-item-separator
  209. ----
  210. .. _class_PackedVector2Array_method_reverse:
  211. .. rst-class:: classref-method
  212. void **reverse** **(** **)**
  213. Reverses the order of the elements in the array.
  214. .. rst-class:: classref-item-separator
  215. ----
  216. .. _class_PackedVector2Array_method_rfind:
  217. .. rst-class:: classref-method
  218. :ref:`int<class_int>` **rfind** **(** :ref:`Vector2<class_Vector2>` value, :ref:`int<class_int>` from=-1 **)** |const|
  219. 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.
  220. \ **Note:** Vectors with :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` elements don't behave the same as other vectors. Therefore, the results from this method may not be accurate if NaNs are included.
  221. .. rst-class:: classref-item-separator
  222. ----
  223. .. _class_PackedVector2Array_method_set:
  224. .. rst-class:: classref-method
  225. void **set** **(** :ref:`int<class_int>` index, :ref:`Vector2<class_Vector2>` value **)**
  226. Changes the :ref:`Vector2<class_Vector2>` at the given index.
  227. .. rst-class:: classref-item-separator
  228. ----
  229. .. _class_PackedVector2Array_method_size:
  230. .. rst-class:: classref-method
  231. :ref:`int<class_int>` **size** **(** **)** |const|
  232. Returns the number of elements in the array.
  233. .. rst-class:: classref-item-separator
  234. ----
  235. .. _class_PackedVector2Array_method_slice:
  236. .. rst-class:: classref-method
  237. :ref:`PackedVector2Array<class_PackedVector2Array>` **slice** **(** :ref:`int<class_int>` begin, :ref:`int<class_int>` end=2147483647 **)** |const|
  238. Returns the slice of the **PackedVector2Array**, from ``begin`` (inclusive) to ``end`` (exclusive), as a new **PackedVector2Array**.
  239. 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())``).
  240. 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)``).
  241. .. rst-class:: classref-item-separator
  242. ----
  243. .. _class_PackedVector2Array_method_sort:
  244. .. rst-class:: classref-method
  245. void **sort** **(** **)**
  246. Sorts the elements of the array in ascending order.
  247. \ **Note:** Vectors with :ref:`@GDScript.NAN<class_@GDScript_constant_NAN>` elements don't behave the same as other vectors. Therefore, the results from this method may not be accurate if NaNs are included.
  248. .. rst-class:: classref-item-separator
  249. ----
  250. .. _class_PackedVector2Array_method_to_byte_array:
  251. .. rst-class:: classref-method
  252. :ref:`PackedByteArray<class_PackedByteArray>` **to_byte_array** **(** **)** |const|
  253. Returns a :ref:`PackedByteArray<class_PackedByteArray>` with each vector encoded as bytes.
  254. .. rst-class:: classref-section-separator
  255. ----
  256. .. rst-class:: classref-descriptions-group
  257. Operator Descriptions
  258. ---------------------
  259. .. _class_PackedVector2Array_operator_neq_PackedVector2Array:
  260. .. rst-class:: classref-operator
  261. :ref:`bool<class_bool>` **operator !=** **(** :ref:`PackedVector2Array<class_PackedVector2Array>` right **)**
  262. Returns ``true`` if contents of the arrays differ.
  263. .. rst-class:: classref-item-separator
  264. ----
  265. .. _class_PackedVector2Array_operator_mul_Transform2D:
  266. .. rst-class:: classref-operator
  267. :ref:`PackedVector2Array<class_PackedVector2Array>` **operator *** **(** :ref:`Transform2D<class_Transform2D>` right **)**
  268. Transforms (multiplies) all vectors in the array by the :ref:`Transform2D<class_Transform2D>` matrix.
  269. .. rst-class:: classref-item-separator
  270. ----
  271. .. _class_PackedVector2Array_operator_sum_PackedVector2Array:
  272. .. rst-class:: classref-operator
  273. :ref:`PackedVector2Array<class_PackedVector2Array>` **operator +** **(** :ref:`PackedVector2Array<class_PackedVector2Array>` right **)**
  274. Returns a new **PackedVector2Array** with contents of ``right`` added at the end of this array. For better performance, consider using :ref:`append_array<class_PackedVector2Array_method_append_array>` instead.
  275. .. rst-class:: classref-item-separator
  276. ----
  277. .. _class_PackedVector2Array_operator_eq_PackedVector2Array:
  278. .. rst-class:: classref-operator
  279. :ref:`bool<class_bool>` **operator ==** **(** :ref:`PackedVector2Array<class_PackedVector2Array>` right **)**
  280. Returns ``true`` if contents of both arrays are the same, i.e. they have all equal :ref:`Vector2<class_Vector2>`\ s at the corresponding indices.
  281. .. rst-class:: classref-item-separator
  282. ----
  283. .. _class_PackedVector2Array_operator_idx_int:
  284. .. rst-class:: classref-operator
  285. :ref:`Vector2<class_Vector2>` **operator []** **(** :ref:`int<class_int>` index **)**
  286. Returns the :ref:`Vector2<class_Vector2>` 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.
  287. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  288. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  289. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  290. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  291. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  292. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  293. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`