Merge pull request #49662 from kleonc/transforms-xform_inv-docs

This commit is contained in:
Rémi Verschelde 2021-12-02 12:54:44 +01:00 committed by GitHub
commit 6f1fcdee0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -132,7 +132,7 @@
<return type="Variant" />
<argument index="0" name="v" type="Variant" />
<description>
Inverse-transforms the given [Vector3], [Plane], [AABB], or [PoolVector3Array] by this transform.
Inverse-transforms the given [Vector3], [Plane], [AABB], or [PoolVector3Array] by this transform, under the assumption that the transformation is composed of rotation and translation (no scaling). Equivalent to calling [code]inverse().xform(v)[/code] on this transform. For affine transformations (e.g. with scaling) see [method affine_inverse] method.
</description>
</method>
</methods>

View file

@ -138,7 +138,7 @@
<return type="Variant" />
<argument index="0" name="v" type="Variant" />
<description>
Inverse-transforms the given [Vector2], [Rect2], or [PoolVector2Array] by this transform.
Inverse-transforms the given [Vector2], [Rect2], or [PoolVector2Array] by this transform, under the assumption that the transformation is composed of rotation and translation (no scaling). Equivalent to calling [code]inverse().xform(v)[/code] on this transform. For affine transformations (e.g. with scaling) see [method affine_inverse] method.
</description>
</method>
</methods>