class_transform2d.rst 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814
  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/Transform2D.xml.
  6. .. _class_Transform2D:
  7. Transform2D
  8. ===========
  9. A 2ร—3 matrix representing a 2D transformation.
  10. .. rst-class:: classref-introduction-group
  11. Description
  12. -----------
  13. The **Transform2D** built-in :ref:`Variant<class_Variant>` type is a 2ร—3 `matrix <https://en.wikipedia.org/wiki/Matrix_(mathematics)>`__ representing a transformation in 2D space. It contains three :ref:`Vector2<class_Vector2>` values: :ref:`x<class_Transform2D_property_x>`, :ref:`y<class_Transform2D_property_y>`, and :ref:`origin<class_Transform2D_property_origin>`. Together, they can represent translation, rotation, scale, and skew.
  14. The :ref:`x<class_Transform2D_property_x>` and :ref:`y<class_Transform2D_property_y>` axes form a 2ร—2 matrix, known as the transform's **basis**. The length of each axis (:ref:`Vector2.length()<class_Vector2_method_length>`) influences the transform's scale, while the direction of all axes influence the rotation. Usually, both axes are perpendicular to one another. However, when you rotate one axis individually, the transform becomes skewed. Applying a skewed transform to a 2D sprite will make the sprite appear distorted.
  15. For a general introduction, see the :doc:`Matrices and transforms <../tutorials/math/matrices_and_transforms>` tutorial.
  16. \ **Note:** Unlike :ref:`Transform3D<class_Transform3D>`, there is no 2D equivalent to the :ref:`Basis<class_Basis>` type. All mentions of "basis" refer to the :ref:`x<class_Transform2D_property_x>` and :ref:`y<class_Transform2D_property_y>` components of **Transform2D**.
  17. .. note::
  18. There are notable differences when using this API with C#. See :ref:`doc_c_sharp_differences` for more information.
  19. .. rst-class:: classref-introduction-group
  20. Tutorials
  21. ---------
  22. - :doc:`Math documentation index <../tutorials/math/index>`
  23. - :doc:`Matrices and transforms <../tutorials/math/matrices_and_transforms>`
  24. - `Matrix Transform Demo <https://godotengine.org/asset-library/asset/2787>`__
  25. - `2.5D Game Demo <https://godotengine.org/asset-library/asset/2783>`__
  26. .. rst-class:: classref-reftable-group
  27. Properties
  28. ----------
  29. .. table::
  30. :widths: auto
  31. +-------------------------------+--------------------------------------------------+-------------------+
  32. | :ref:`Vector2<class_Vector2>` | :ref:`origin<class_Transform2D_property_origin>` | ``Vector2(0, 0)`` |
  33. +-------------------------------+--------------------------------------------------+-------------------+
  34. | :ref:`Vector2<class_Vector2>` | :ref:`x<class_Transform2D_property_x>` | ``Vector2(1, 0)`` |
  35. +-------------------------------+--------------------------------------------------+-------------------+
  36. | :ref:`Vector2<class_Vector2>` | :ref:`y<class_Transform2D_property_y>` | ``Vector2(0, 1)`` |
  37. +-------------------------------+--------------------------------------------------+-------------------+
  38. .. rst-class:: classref-reftable-group
  39. Constructors
  40. ------------
  41. .. table::
  42. :widths: auto
  43. +---------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  44. | :ref:`Transform2D<class_Transform2D>` | :ref:`Transform2D<class_Transform2D_constructor_Transform2D>`\ (\ ) |
  45. +---------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  46. | :ref:`Transform2D<class_Transform2D>` | :ref:`Transform2D<class_Transform2D_constructor_Transform2D>`\ (\ from\: :ref:`Transform2D<class_Transform2D>`\ ) |
  47. +---------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  48. | :ref:`Transform2D<class_Transform2D>` | :ref:`Transform2D<class_Transform2D_constructor_Transform2D>`\ (\ rotation\: :ref:`float<class_float>`, position\: :ref:`Vector2<class_Vector2>`\ ) |
  49. +---------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  50. | :ref:`Transform2D<class_Transform2D>` | :ref:`Transform2D<class_Transform2D_constructor_Transform2D>`\ (\ rotation\: :ref:`float<class_float>`, scale\: :ref:`Vector2<class_Vector2>`, skew\: :ref:`float<class_float>`, position\: :ref:`Vector2<class_Vector2>`\ ) |
  51. +---------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  52. | :ref:`Transform2D<class_Transform2D>` | :ref:`Transform2D<class_Transform2D_constructor_Transform2D>`\ (\ x_axis\: :ref:`Vector2<class_Vector2>`, y_axis\: :ref:`Vector2<class_Vector2>`, origin\: :ref:`Vector2<class_Vector2>`\ ) |
  53. +---------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  54. .. rst-class:: classref-reftable-group
  55. Methods
  56. -------
  57. .. table::
  58. :widths: auto
  59. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  60. | :ref:`Transform2D<class_Transform2D>` | :ref:`affine_inverse<class_Transform2D_method_affine_inverse>`\ (\ ) |const| |
  61. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  62. | :ref:`Vector2<class_Vector2>` | :ref:`basis_xform<class_Transform2D_method_basis_xform>`\ (\ v\: :ref:`Vector2<class_Vector2>`\ ) |const| |
  63. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  64. | :ref:`Vector2<class_Vector2>` | :ref:`basis_xform_inv<class_Transform2D_method_basis_xform_inv>`\ (\ v\: :ref:`Vector2<class_Vector2>`\ ) |const| |
  65. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  66. | :ref:`float<class_float>` | :ref:`determinant<class_Transform2D_method_determinant>`\ (\ ) |const| |
  67. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  68. | :ref:`Vector2<class_Vector2>` | :ref:`get_origin<class_Transform2D_method_get_origin>`\ (\ ) |const| |
  69. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  70. | :ref:`float<class_float>` | :ref:`get_rotation<class_Transform2D_method_get_rotation>`\ (\ ) |const| |
  71. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  72. | :ref:`Vector2<class_Vector2>` | :ref:`get_scale<class_Transform2D_method_get_scale>`\ (\ ) |const| |
  73. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  74. | :ref:`float<class_float>` | :ref:`get_skew<class_Transform2D_method_get_skew>`\ (\ ) |const| |
  75. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  76. | :ref:`Transform2D<class_Transform2D>` | :ref:`interpolate_with<class_Transform2D_method_interpolate_with>`\ (\ xform\: :ref:`Transform2D<class_Transform2D>`, weight\: :ref:`float<class_float>`\ ) |const| |
  77. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  78. | :ref:`Transform2D<class_Transform2D>` | :ref:`inverse<class_Transform2D_method_inverse>`\ (\ ) |const| |
  79. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  80. | :ref:`bool<class_bool>` | :ref:`is_conformal<class_Transform2D_method_is_conformal>`\ (\ ) |const| |
  81. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  82. | :ref:`bool<class_bool>` | :ref:`is_equal_approx<class_Transform2D_method_is_equal_approx>`\ (\ xform\: :ref:`Transform2D<class_Transform2D>`\ ) |const| |
  83. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  84. | :ref:`bool<class_bool>` | :ref:`is_finite<class_Transform2D_method_is_finite>`\ (\ ) |const| |
  85. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  86. | :ref:`Transform2D<class_Transform2D>` | :ref:`looking_at<class_Transform2D_method_looking_at>`\ (\ target\: :ref:`Vector2<class_Vector2>` = Vector2(0, 0)\ ) |const| |
  87. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  88. | :ref:`Transform2D<class_Transform2D>` | :ref:`orthonormalized<class_Transform2D_method_orthonormalized>`\ (\ ) |const| |
  89. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  90. | :ref:`Transform2D<class_Transform2D>` | :ref:`rotated<class_Transform2D_method_rotated>`\ (\ angle\: :ref:`float<class_float>`\ ) |const| |
  91. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  92. | :ref:`Transform2D<class_Transform2D>` | :ref:`rotated_local<class_Transform2D_method_rotated_local>`\ (\ angle\: :ref:`float<class_float>`\ ) |const| |
  93. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  94. | :ref:`Transform2D<class_Transform2D>` | :ref:`scaled<class_Transform2D_method_scaled>`\ (\ scale\: :ref:`Vector2<class_Vector2>`\ ) |const| |
  95. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  96. | :ref:`Transform2D<class_Transform2D>` | :ref:`scaled_local<class_Transform2D_method_scaled_local>`\ (\ scale\: :ref:`Vector2<class_Vector2>`\ ) |const| |
  97. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  98. | :ref:`Transform2D<class_Transform2D>` | :ref:`translated<class_Transform2D_method_translated>`\ (\ offset\: :ref:`Vector2<class_Vector2>`\ ) |const| |
  99. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  100. | :ref:`Transform2D<class_Transform2D>` | :ref:`translated_local<class_Transform2D_method_translated_local>`\ (\ offset\: :ref:`Vector2<class_Vector2>`\ ) |const| |
  101. +---------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------+
  102. .. rst-class:: classref-reftable-group
  103. Operators
  104. ---------
  105. .. table::
  106. :widths: auto
  107. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  108. | :ref:`bool<class_bool>` | :ref:`operator !=<class_Transform2D_operator_neq_Transform2D>`\ (\ right\: :ref:`Transform2D<class_Transform2D>`\ ) |
  109. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  110. | :ref:`PackedVector2Array<class_PackedVector2Array>` | :ref:`operator *<class_Transform2D_operator_mul_PackedVector2Array>`\ (\ right\: :ref:`PackedVector2Array<class_PackedVector2Array>`\ ) |
  111. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  112. | :ref:`Rect2<class_Rect2>` | :ref:`operator *<class_Transform2D_operator_mul_Rect2>`\ (\ right\: :ref:`Rect2<class_Rect2>`\ ) |
  113. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  114. | :ref:`Transform2D<class_Transform2D>` | :ref:`operator *<class_Transform2D_operator_mul_Transform2D>`\ (\ right\: :ref:`Transform2D<class_Transform2D>`\ ) |
  115. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  116. | :ref:`Vector2<class_Vector2>` | :ref:`operator *<class_Transform2D_operator_mul_Vector2>`\ (\ right\: :ref:`Vector2<class_Vector2>`\ ) |
  117. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  118. | :ref:`Transform2D<class_Transform2D>` | :ref:`operator *<class_Transform2D_operator_mul_float>`\ (\ right\: :ref:`float<class_float>`\ ) |
  119. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  120. | :ref:`Transform2D<class_Transform2D>` | :ref:`operator *<class_Transform2D_operator_mul_int>`\ (\ right\: :ref:`int<class_int>`\ ) |
  121. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  122. | :ref:`Transform2D<class_Transform2D>` | :ref:`operator /<class_Transform2D_operator_div_float>`\ (\ right\: :ref:`float<class_float>`\ ) |
  123. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  124. | :ref:`Transform2D<class_Transform2D>` | :ref:`operator /<class_Transform2D_operator_div_int>`\ (\ right\: :ref:`int<class_int>`\ ) |
  125. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  126. | :ref:`bool<class_bool>` | :ref:`operator ==<class_Transform2D_operator_eq_Transform2D>`\ (\ right\: :ref:`Transform2D<class_Transform2D>`\ ) |
  127. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  128. | :ref:`Vector2<class_Vector2>` | :ref:`operator []<class_Transform2D_operator_idx_int>`\ (\ index\: :ref:`int<class_int>`\ ) |
  129. +-----------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------+
  130. .. rst-class:: classref-section-separator
  131. ----
  132. .. rst-class:: classref-descriptions-group
  133. Constants
  134. ---------
  135. .. _class_Transform2D_constant_IDENTITY:
  136. .. rst-class:: classref-constant
  137. **IDENTITY** = ``Transform2D(1, 0, 0, 1, 0, 0)`` :ref:`๐Ÿ”—<class_Transform2D_constant_IDENTITY>`
  138. The identity **Transform2D**. This is a transform with no translation, no rotation, and a scale of :ref:`Vector2.ONE<class_Vector2_constant_ONE>`. This also means that:
  139. - The :ref:`x<class_Transform2D_property_x>` points right (:ref:`Vector2.RIGHT<class_Vector2_constant_RIGHT>`);
  140. - The :ref:`y<class_Transform2D_property_y>` points down (:ref:`Vector2.DOWN<class_Vector2_constant_DOWN>`).
  141. ::
  142. var transform = Transform2D.IDENTITY
  143. print("| X | Y | Origin")
  144. print("| %.f | %.f | %.f" % [transform.x.x, transform.y.x, transform.origin.x])
  145. print("| %.f | %.f | %.f" % [transform.x.y, transform.y.y, transform.origin.y])
  146. # Prints:
  147. # | X | Y | Origin
  148. # | 1 | 0 | 0
  149. # | 0 | 1 | 0
  150. If a :ref:`Vector2<class_Vector2>`, a :ref:`Rect2<class_Rect2>`, a :ref:`PackedVector2Array<class_PackedVector2Array>`, or another **Transform2D** is transformed (multiplied) by this constant, no transformation occurs.
  151. \ **Note:** In GDScript, this constant is equivalent to creating a :ref:`Transform2D<class_Transform2D_constructor_Transform2D>` without any arguments. It can be used to make your code clearer, and for consistency with C#.
  152. .. _class_Transform2D_constant_FLIP_X:
  153. .. rst-class:: classref-constant
  154. **FLIP_X** = ``Transform2D(-1, 0, 0, 1, 0, 0)`` :ref:`๐Ÿ”—<class_Transform2D_constant_FLIP_X>`
  155. When any transform is multiplied by :ref:`FLIP_X<class_Transform2D_constant_FLIP_X>`, it negates all components of the :ref:`x<class_Transform2D_property_x>` axis (the X column).
  156. When :ref:`FLIP_X<class_Transform2D_constant_FLIP_X>` is multiplied by any transform, it negates the :ref:`Vector2.x<class_Vector2_property_x>` component of all axes (the X row).
  157. .. _class_Transform2D_constant_FLIP_Y:
  158. .. rst-class:: classref-constant
  159. **FLIP_Y** = ``Transform2D(1, 0, 0, -1, 0, 0)`` :ref:`๐Ÿ”—<class_Transform2D_constant_FLIP_Y>`
  160. When any transform is multiplied by :ref:`FLIP_Y<class_Transform2D_constant_FLIP_Y>`, it negates all components of the :ref:`y<class_Transform2D_property_y>` axis (the Y column).
  161. When :ref:`FLIP_Y<class_Transform2D_constant_FLIP_Y>` is multiplied by any transform, it negates the :ref:`Vector2.y<class_Vector2_property_y>` component of all axes (the Y row).
  162. .. rst-class:: classref-section-separator
  163. ----
  164. .. rst-class:: classref-descriptions-group
  165. Property Descriptions
  166. ---------------------
  167. .. _class_Transform2D_property_origin:
  168. .. rst-class:: classref-property
  169. :ref:`Vector2<class_Vector2>` **origin** = ``Vector2(0, 0)`` :ref:`๐Ÿ”—<class_Transform2D_property_origin>`
  170. The translation offset of this transform, and the column ``2`` of the matrix. In 2D space, this can be seen as the position.
  171. .. rst-class:: classref-item-separator
  172. ----
  173. .. _class_Transform2D_property_x:
  174. .. rst-class:: classref-property
  175. :ref:`Vector2<class_Vector2>` **x** = ``Vector2(1, 0)`` :ref:`๐Ÿ”—<class_Transform2D_property_x>`
  176. The transform basis's X axis, and the column ``0`` of the matrix. Combined with :ref:`y<class_Transform2D_property_y>`, this represents the transform's rotation, scale, and skew.
  177. On the identity transform, this vector points right (:ref:`Vector2.RIGHT<class_Vector2_constant_RIGHT>`).
  178. .. rst-class:: classref-item-separator
  179. ----
  180. .. _class_Transform2D_property_y:
  181. .. rst-class:: classref-property
  182. :ref:`Vector2<class_Vector2>` **y** = ``Vector2(0, 1)`` :ref:`๐Ÿ”—<class_Transform2D_property_y>`
  183. The transform basis's Y axis, and the column ``1`` of the matrix. Combined with :ref:`x<class_Transform2D_property_x>`, this represents the transform's rotation, scale, and skew.
  184. On the identity transform, this vector points down (:ref:`Vector2.DOWN<class_Vector2_constant_DOWN>`).
  185. .. rst-class:: classref-section-separator
  186. ----
  187. .. rst-class:: classref-descriptions-group
  188. Constructor Descriptions
  189. ------------------------
  190. .. _class_Transform2D_constructor_Transform2D:
  191. .. rst-class:: classref-constructor
  192. :ref:`Transform2D<class_Transform2D>` **Transform2D**\ (\ ) :ref:`๐Ÿ”—<class_Transform2D_constructor_Transform2D>`
  193. Constructs a **Transform2D** identical to :ref:`IDENTITY<class_Transform2D_constant_IDENTITY>`.
  194. \ **Note:** In C#, this constructs a **Transform2D** with all of its components set to :ref:`Vector2.ZERO<class_Vector2_constant_ZERO>`.
  195. .. rst-class:: classref-item-separator
  196. ----
  197. .. rst-class:: classref-constructor
  198. :ref:`Transform2D<class_Transform2D>` **Transform2D**\ (\ from\: :ref:`Transform2D<class_Transform2D>`\ )
  199. Constructs a **Transform2D** as a copy of the given **Transform2D**.
  200. .. rst-class:: classref-item-separator
  201. ----
  202. .. rst-class:: classref-constructor
  203. :ref:`Transform2D<class_Transform2D>` **Transform2D**\ (\ rotation\: :ref:`float<class_float>`, position\: :ref:`Vector2<class_Vector2>`\ )
  204. Constructs a **Transform2D** from a given angle (in radians) and position.
  205. .. rst-class:: classref-item-separator
  206. ----
  207. .. rst-class:: classref-constructor
  208. :ref:`Transform2D<class_Transform2D>` **Transform2D**\ (\ rotation\: :ref:`float<class_float>`, scale\: :ref:`Vector2<class_Vector2>`, skew\: :ref:`float<class_float>`, position\: :ref:`Vector2<class_Vector2>`\ )
  209. Constructs a **Transform2D** from a given angle (in radians), scale, skew (in radians), and position.
  210. .. rst-class:: classref-item-separator
  211. ----
  212. .. rst-class:: classref-constructor
  213. :ref:`Transform2D<class_Transform2D>` **Transform2D**\ (\ x_axis\: :ref:`Vector2<class_Vector2>`, y_axis\: :ref:`Vector2<class_Vector2>`, origin\: :ref:`Vector2<class_Vector2>`\ )
  214. Constructs a **Transform2D** from 3 :ref:`Vector2<class_Vector2>` values representing :ref:`x<class_Transform2D_property_x>`, :ref:`y<class_Transform2D_property_y>`, and the :ref:`origin<class_Transform2D_property_origin>` (the three matrix columns).
  215. .. rst-class:: classref-section-separator
  216. ----
  217. .. rst-class:: classref-descriptions-group
  218. Method Descriptions
  219. -------------------
  220. .. _class_Transform2D_method_affine_inverse:
  221. .. rst-class:: classref-method
  222. :ref:`Transform2D<class_Transform2D>` **affine_inverse**\ (\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_affine_inverse>`
  223. Returns the inverted version of this transform. Unlike :ref:`inverse()<class_Transform2D_method_inverse>`, this method works with almost any basis, including non-uniform ones, but is slower.
  224. \ **Note:** For this method to return correctly, the transform's basis needs to have a determinant that is not exactly ``0.0`` (see :ref:`determinant()<class_Transform2D_method_determinant>`).
  225. .. rst-class:: classref-item-separator
  226. ----
  227. .. _class_Transform2D_method_basis_xform:
  228. .. rst-class:: classref-method
  229. :ref:`Vector2<class_Vector2>` **basis_xform**\ (\ v\: :ref:`Vector2<class_Vector2>`\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_basis_xform>`
  230. Returns a copy of the ``v`` vector, transformed (multiplied) by the transform basis's matrix. Unlike the multiplication operator (``*``), this method ignores the :ref:`origin<class_Transform2D_property_origin>`.
  231. .. rst-class:: classref-item-separator
  232. ----
  233. .. _class_Transform2D_method_basis_xform_inv:
  234. .. rst-class:: classref-method
  235. :ref:`Vector2<class_Vector2>` **basis_xform_inv**\ (\ v\: :ref:`Vector2<class_Vector2>`\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_basis_xform_inv>`
  236. Returns a copy of the ``v`` vector, transformed (multiplied) by the inverse transform basis's matrix (see :ref:`inverse()<class_Transform2D_method_inverse>`). This method ignores the :ref:`origin<class_Transform2D_property_origin>`.
  237. \ **Note:** This method assumes that this transform's basis is *orthonormal* (see :ref:`orthonormalized()<class_Transform2D_method_orthonormalized>`). If the basis is not orthonormal, ``transform.affine_inverse().basis_xform(vector)`` should be used instead (see :ref:`affine_inverse()<class_Transform2D_method_affine_inverse>`).
  238. .. rst-class:: classref-item-separator
  239. ----
  240. .. _class_Transform2D_method_determinant:
  241. .. rst-class:: classref-method
  242. :ref:`float<class_float>` **determinant**\ (\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_determinant>`
  243. Returns the `determinant <https://en.wikipedia.org/wiki/Determinant>`__ of this transform basis's matrix. For advanced math, this number can be used to determine a few attributes:
  244. - If the determinant is exactly ``0.0``, the basis is not invertible (see :ref:`inverse()<class_Transform2D_method_inverse>`).
  245. - If the determinant is a negative number, the basis represents a negative scale.
  246. \ **Note:** If the basis's scale is the same for every axis, its determinant is always that scale by the power of 2.
  247. .. rst-class:: classref-item-separator
  248. ----
  249. .. _class_Transform2D_method_get_origin:
  250. .. rst-class:: classref-method
  251. :ref:`Vector2<class_Vector2>` **get_origin**\ (\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_get_origin>`
  252. Returns this transform's translation. Equivalent to :ref:`origin<class_Transform2D_property_origin>`.
  253. .. rst-class:: classref-item-separator
  254. ----
  255. .. _class_Transform2D_method_get_rotation:
  256. .. rst-class:: classref-method
  257. :ref:`float<class_float>` **get_rotation**\ (\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_get_rotation>`
  258. Returns this transform's rotation (in radians). This is equivalent to :ref:`x<class_Transform2D_property_x>`'s angle (see :ref:`Vector2.angle()<class_Vector2_method_angle>`).
  259. .. rst-class:: classref-item-separator
  260. ----
  261. .. _class_Transform2D_method_get_scale:
  262. .. rst-class:: classref-method
  263. :ref:`Vector2<class_Vector2>` **get_scale**\ (\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_get_scale>`
  264. Returns the length of both :ref:`x<class_Transform2D_property_x>` and :ref:`y<class_Transform2D_property_y>`, as a :ref:`Vector2<class_Vector2>`. If this transform's basis is not skewed, this value is the scaling factor. It is not affected by rotation.
  265. .. tabs::
  266. .. code-tab:: gdscript
  267. var my_transform = Transform2D(
  268. Vector2(2, 0),
  269. Vector2(0, 4),
  270. Vector2(0, 0)
  271. )
  272. # Rotating the Transform2D in any way preserves its scale.
  273. my_transform = my_transform.rotated(TAU / 2)
  274. print(my_transform.get_scale()) # Prints (2.0, 4.0)
  275. .. code-tab:: csharp
  276. var myTransform = new Transform2D(
  277. Vector3(2.0f, 0.0f),
  278. Vector3(0.0f, 4.0f),
  279. Vector3(0.0f, 0.0f)
  280. );
  281. // Rotating the Transform2D in any way preserves its scale.
  282. myTransform = myTransform.Rotated(Mathf.Tau / 2.0f);
  283. GD.Print(myTransform.GetScale()); // Prints (2, 4)
  284. \ **Note:** If the value returned by :ref:`determinant()<class_Transform2D_method_determinant>` is negative, the scale is also negative.
  285. .. rst-class:: classref-item-separator
  286. ----
  287. .. _class_Transform2D_method_get_skew:
  288. .. rst-class:: classref-method
  289. :ref:`float<class_float>` **get_skew**\ (\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_get_skew>`
  290. Returns this transform's skew (in radians).
  291. .. rst-class:: classref-item-separator
  292. ----
  293. .. _class_Transform2D_method_interpolate_with:
  294. .. rst-class:: classref-method
  295. :ref:`Transform2D<class_Transform2D>` **interpolate_with**\ (\ xform\: :ref:`Transform2D<class_Transform2D>`, weight\: :ref:`float<class_float>`\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_interpolate_with>`
  296. Returns the result of the linear interpolation between this transform and ``xform`` by the given ``weight``.
  297. The ``weight`` should be between ``0.0`` and ``1.0`` (inclusive). Values outside this range are allowed and can be used to perform *extrapolation* instead.
  298. .. rst-class:: classref-item-separator
  299. ----
  300. .. _class_Transform2D_method_inverse:
  301. .. rst-class:: classref-method
  302. :ref:`Transform2D<class_Transform2D>` **inverse**\ (\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_inverse>`
  303. Returns the `inverted version of this transform <https://en.wikipedia.org/wiki/Invertible_matrix>`__.
  304. \ **Note:** For this method to return correctly, the transform's basis needs to be *orthonormal* (see :ref:`orthonormalized()<class_Transform2D_method_orthonormalized>`). That means the basis should only represent a rotation. If it does not, use :ref:`affine_inverse()<class_Transform2D_method_affine_inverse>` instead.
  305. .. rst-class:: classref-item-separator
  306. ----
  307. .. _class_Transform2D_method_is_conformal:
  308. .. rst-class:: classref-method
  309. :ref:`bool<class_bool>` **is_conformal**\ (\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_is_conformal>`
  310. Returns ``true`` if this transform's basis is conformal. A conformal basis is both *orthogonal* (the axes are perpendicular to each other) and *uniform* (the axes share the same length). This method can be especially useful during physics calculations.
  311. .. rst-class:: classref-item-separator
  312. ----
  313. .. _class_Transform2D_method_is_equal_approx:
  314. .. rst-class:: classref-method
  315. :ref:`bool<class_bool>` **is_equal_approx**\ (\ xform\: :ref:`Transform2D<class_Transform2D>`\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_is_equal_approx>`
  316. Returns ``true`` if this transform and ``xform`` are approximately equal, by running :ref:`@GlobalScope.is_equal_approx()<class_@GlobalScope_method_is_equal_approx>` on each component.
  317. .. rst-class:: classref-item-separator
  318. ----
  319. .. _class_Transform2D_method_is_finite:
  320. .. rst-class:: classref-method
  321. :ref:`bool<class_bool>` **is_finite**\ (\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_is_finite>`
  322. Returns ``true`` if this transform is finite, by calling :ref:`@GlobalScope.is_finite()<class_@GlobalScope_method_is_finite>` on each component.
  323. .. rst-class:: classref-item-separator
  324. ----
  325. .. _class_Transform2D_method_looking_at:
  326. .. rst-class:: classref-method
  327. :ref:`Transform2D<class_Transform2D>` **looking_at**\ (\ target\: :ref:`Vector2<class_Vector2>` = Vector2(0, 0)\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_looking_at>`
  328. Returns a copy of the transform rotated such that the rotated X-axis points towards the ``target`` position, in global space.
  329. .. rst-class:: classref-item-separator
  330. ----
  331. .. _class_Transform2D_method_orthonormalized:
  332. .. rst-class:: classref-method
  333. :ref:`Transform2D<class_Transform2D>` **orthonormalized**\ (\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_orthonormalized>`
  334. Returns a copy of this transform with its basis orthonormalized. An orthonormal basis is both *orthogonal* (the axes are perpendicular to each other) and *normalized* (the axes have a length of ``1.0``), which also means it can only represent a rotation.
  335. .. rst-class:: classref-item-separator
  336. ----
  337. .. _class_Transform2D_method_rotated:
  338. .. rst-class:: classref-method
  339. :ref:`Transform2D<class_Transform2D>` **rotated**\ (\ angle\: :ref:`float<class_float>`\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_rotated>`
  340. Returns a copy of this transform rotated by the given ``angle`` (in radians).
  341. If ``angle`` is positive, the transform is rotated clockwise.
  342. This method is an optimized version of multiplying the given transform ``X`` with a corresponding rotation transform ``R`` from the left, i.e., ``R * X``.
  343. This can be seen as transforming with respect to the global/parent frame.
  344. .. rst-class:: classref-item-separator
  345. ----
  346. .. _class_Transform2D_method_rotated_local:
  347. .. rst-class:: classref-method
  348. :ref:`Transform2D<class_Transform2D>` **rotated_local**\ (\ angle\: :ref:`float<class_float>`\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_rotated_local>`
  349. Returns a copy of the transform rotated by the given ``angle`` (in radians).
  350. This method is an optimized version of multiplying the given transform ``X`` with a corresponding rotation transform ``R`` from the right, i.e., ``X * R``.
  351. This can be seen as transforming with respect to the local frame.
  352. .. rst-class:: classref-item-separator
  353. ----
  354. .. _class_Transform2D_method_scaled:
  355. .. rst-class:: classref-method
  356. :ref:`Transform2D<class_Transform2D>` **scaled**\ (\ scale\: :ref:`Vector2<class_Vector2>`\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_scaled>`
  357. Returns a copy of the transform scaled by the given ``scale`` factor.
  358. This method is an optimized version of multiplying the given transform ``X`` with a corresponding scaling transform ``S`` from the left, i.e., ``S * X``.
  359. This can be seen as transforming with respect to the global/parent frame.
  360. .. rst-class:: classref-item-separator
  361. ----
  362. .. _class_Transform2D_method_scaled_local:
  363. .. rst-class:: classref-method
  364. :ref:`Transform2D<class_Transform2D>` **scaled_local**\ (\ scale\: :ref:`Vector2<class_Vector2>`\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_scaled_local>`
  365. Returns a copy of the transform scaled by the given ``scale`` factor.
  366. This method is an optimized version of multiplying the given transform ``X`` with a corresponding scaling transform ``S`` from the right, i.e., ``X * S``.
  367. This can be seen as transforming with respect to the local frame.
  368. .. rst-class:: classref-item-separator
  369. ----
  370. .. _class_Transform2D_method_translated:
  371. .. rst-class:: classref-method
  372. :ref:`Transform2D<class_Transform2D>` **translated**\ (\ offset\: :ref:`Vector2<class_Vector2>`\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_translated>`
  373. Returns a copy of the transform translated by the given ``offset``.
  374. This method is an optimized version of multiplying the given transform ``X`` with a corresponding translation transform ``T`` from the left, i.e., ``T * X``.
  375. This can be seen as transforming with respect to the global/parent frame.
  376. .. rst-class:: classref-item-separator
  377. ----
  378. .. _class_Transform2D_method_translated_local:
  379. .. rst-class:: classref-method
  380. :ref:`Transform2D<class_Transform2D>` **translated_local**\ (\ offset\: :ref:`Vector2<class_Vector2>`\ ) |const| :ref:`๐Ÿ”—<class_Transform2D_method_translated_local>`
  381. Returns a copy of the transform translated by the given ``offset``.
  382. This method is an optimized version of multiplying the given transform ``X`` with a corresponding translation transform ``T`` from the right, i.e., ``X * T``.
  383. This can be seen as transforming with respect to the local frame.
  384. .. rst-class:: classref-section-separator
  385. ----
  386. .. rst-class:: classref-descriptions-group
  387. Operator Descriptions
  388. ---------------------
  389. .. _class_Transform2D_operator_neq_Transform2D:
  390. .. rst-class:: classref-operator
  391. :ref:`bool<class_bool>` **operator !=**\ (\ right\: :ref:`Transform2D<class_Transform2D>`\ ) :ref:`๐Ÿ”—<class_Transform2D_operator_neq_Transform2D>`
  392. Returns ``true`` if the components of both transforms are not equal.
  393. \ **Note:** Due to floating-point precision errors, consider using :ref:`is_equal_approx()<class_Transform2D_method_is_equal_approx>` instead, which is more reliable.
  394. .. rst-class:: classref-item-separator
  395. ----
  396. .. _class_Transform2D_operator_mul_PackedVector2Array:
  397. .. rst-class:: classref-operator
  398. :ref:`PackedVector2Array<class_PackedVector2Array>` **operator ***\ (\ right\: :ref:`PackedVector2Array<class_PackedVector2Array>`\ ) :ref:`๐Ÿ”—<class_Transform2D_operator_mul_PackedVector2Array>`
  399. Transforms (multiplies) every :ref:`Vector2<class_Vector2>` element of the given :ref:`PackedVector2Array<class_PackedVector2Array>` by this transformation matrix.
  400. On larger arrays, this operation is much faster than transforming each :ref:`Vector2<class_Vector2>` individually.
  401. .. rst-class:: classref-item-separator
  402. ----
  403. .. _class_Transform2D_operator_mul_Rect2:
  404. .. rst-class:: classref-operator
  405. :ref:`Rect2<class_Rect2>` **operator ***\ (\ right\: :ref:`Rect2<class_Rect2>`\ ) :ref:`๐Ÿ”—<class_Transform2D_operator_mul_Rect2>`
  406. Transforms (multiplies) the :ref:`Rect2<class_Rect2>` by this transformation matrix.
  407. .. rst-class:: classref-item-separator
  408. ----
  409. .. _class_Transform2D_operator_mul_Transform2D:
  410. .. rst-class:: classref-operator
  411. :ref:`Transform2D<class_Transform2D>` **operator ***\ (\ right\: :ref:`Transform2D<class_Transform2D>`\ ) :ref:`๐Ÿ”—<class_Transform2D_operator_mul_Transform2D>`
  412. Transforms (multiplies) this transform by the ``right`` transform.
  413. This is the operation performed between parent and child :ref:`CanvasItem<class_CanvasItem>` nodes.
  414. \ **Note:** If you need to only modify one attribute of this transform, consider using one of the following methods, instead:
  415. - For translation, see :ref:`translated()<class_Transform2D_method_translated>` or :ref:`translated_local()<class_Transform2D_method_translated_local>`.
  416. - For rotation, see :ref:`rotated()<class_Transform2D_method_rotated>` or :ref:`rotated_local()<class_Transform2D_method_rotated_local>`.
  417. - For scale, see :ref:`scaled()<class_Transform2D_method_scaled>` or :ref:`scaled_local()<class_Transform2D_method_scaled_local>`.
  418. .. rst-class:: classref-item-separator
  419. ----
  420. .. _class_Transform2D_operator_mul_Vector2:
  421. .. rst-class:: classref-operator
  422. :ref:`Vector2<class_Vector2>` **operator ***\ (\ right\: :ref:`Vector2<class_Vector2>`\ ) :ref:`๐Ÿ”—<class_Transform2D_operator_mul_Vector2>`
  423. Transforms (multiplies) the :ref:`Vector2<class_Vector2>` by this transformation matrix.
  424. .. rst-class:: classref-item-separator
  425. ----
  426. .. _class_Transform2D_operator_mul_float:
  427. .. rst-class:: classref-operator
  428. :ref:`Transform2D<class_Transform2D>` **operator ***\ (\ right\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_Transform2D_operator_mul_float>`
  429. Multiplies all components of the **Transform2D** by the given :ref:`float<class_float>`, including the :ref:`origin<class_Transform2D_property_origin>`. This affects the transform's scale uniformly.
  430. .. rst-class:: classref-item-separator
  431. ----
  432. .. _class_Transform2D_operator_mul_int:
  433. .. rst-class:: classref-operator
  434. :ref:`Transform2D<class_Transform2D>` **operator ***\ (\ right\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_Transform2D_operator_mul_int>`
  435. Multiplies all components of the **Transform2D** by the given :ref:`int<class_int>`, including the :ref:`origin<class_Transform2D_property_origin>`. This affects the transform's scale uniformly.
  436. .. rst-class:: classref-item-separator
  437. ----
  438. .. _class_Transform2D_operator_div_float:
  439. .. rst-class:: classref-operator
  440. :ref:`Transform2D<class_Transform2D>` **operator /**\ (\ right\: :ref:`float<class_float>`\ ) :ref:`๐Ÿ”—<class_Transform2D_operator_div_float>`
  441. Divides all components of the **Transform2D** by the given :ref:`float<class_float>`, including the :ref:`origin<class_Transform2D_property_origin>`. This affects the transform's scale uniformly.
  442. .. rst-class:: classref-item-separator
  443. ----
  444. .. _class_Transform2D_operator_div_int:
  445. .. rst-class:: classref-operator
  446. :ref:`Transform2D<class_Transform2D>` **operator /**\ (\ right\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_Transform2D_operator_div_int>`
  447. Divides all components of the **Transform2D** by the given :ref:`int<class_int>`, including the :ref:`origin<class_Transform2D_property_origin>`. This affects the transform's scale uniformly.
  448. .. rst-class:: classref-item-separator
  449. ----
  450. .. _class_Transform2D_operator_eq_Transform2D:
  451. .. rst-class:: classref-operator
  452. :ref:`bool<class_bool>` **operator ==**\ (\ right\: :ref:`Transform2D<class_Transform2D>`\ ) :ref:`๐Ÿ”—<class_Transform2D_operator_eq_Transform2D>`
  453. Returns ``true`` if the components of both transforms are exactly equal.
  454. \ **Note:** Due to floating-point precision errors, consider using :ref:`is_equal_approx()<class_Transform2D_method_is_equal_approx>` instead, which is more reliable.
  455. .. rst-class:: classref-item-separator
  456. ----
  457. .. _class_Transform2D_operator_idx_int:
  458. .. rst-class:: classref-operator
  459. :ref:`Vector2<class_Vector2>` **operator []**\ (\ index\: :ref:`int<class_int>`\ ) :ref:`๐Ÿ”—<class_Transform2D_operator_idx_int>`
  460. Accesses each axis (column) of this transform by their index. Index ``0`` is the same as :ref:`x<class_Transform2D_property_x>`, index ``1`` is the same as :ref:`y<class_Transform2D_property_y>`, and index ``2`` is the same as :ref:`origin<class_Transform2D_property_origin>`.
  461. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  462. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  463. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  464. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  465. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  466. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  467. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`
  468. .. |void| replace:: :abbr:`void (No return value.)`