2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2019-04-01 12:33:56 +02:00
<class name= "Transform" category= "Built-In Types" version= "3.2" >
2017-09-12 22:42:36 +02:00
<brief_description >
2019-06-22 01:04:47 +02:00
3D transformation (3× 4 matrix).
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2019-06-22 01:04:47 +02:00
Represents one or many transformations in 3D space such as translation, rotation, or scaling. It consists of a [member basis] and an [member origin]. It is similar to a 3× 4 matrix.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2018-11-05 08:46:27 +01:00
<link > https://docs.godotengine.org/en/latest/tutorials/math/index.html</link>
<link > https://docs.godotengine.org/en/latest/tutorials/3d/using_transforms.html</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
<method name= "Transform" >
<return type= "Transform" >
</return>
<argument index= "0" name= "x_axis" type= "Vector3" >
</argument>
<argument index= "1" name= "y_axis" type= "Vector3" >
</argument>
<argument index= "2" name= "z_axis" type= "Vector3" >
</argument>
<argument index= "3" name= "origin" type= "Vector3" >
</argument>
<description >
2017-09-14 07:42:21 +02:00
Constructs the Transform from four [Vector3]. Each axis corresponds to local basis vectors (some of which may be scaled).
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "Transform" >
<return type= "Transform" >
</return>
<argument index= "0" name= "basis" type= "Basis" >
</argument>
<argument index= "1" name= "origin" type= "Vector3" >
</argument>
<description >
2017-09-14 07:42:21 +02:00
Constructs the Transform from a [Basis] and [Vector3].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "Transform" >
<return type= "Transform" >
</return>
<argument index= "0" name= "from" type= "Transform2D" >
</argument>
<description >
2017-09-14 07:42:21 +02:00
Constructs the Transform from a [Transform2D].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "Transform" >
<return type= "Transform" >
</return>
<argument index= "0" name= "from" type= "Quat" >
</argument>
<description >
2017-09-14 07:42:21 +02:00
Constructs the Transform from a [Quat]. The origin will be Vector3(0, 0, 0).
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "Transform" >
<return type= "Transform" >
</return>
<argument index= "0" name= "from" type= "Basis" >
</argument>
<description >
2017-09-14 07:42:21 +02:00
Constructs the Transform from a [Basis]. The origin will be Vector3(0, 0, 0).
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "affine_inverse" >
<return type= "Transform" >
</return>
<description >
2017-10-14 12:45:26 +02:00
Returns the inverse of the transform, under the assumption that the transformation is composed of rotation, scaling and translation.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "interpolate_with" >
<return type= "Transform" >
</return>
<argument index= "0" name= "transform" type= "Transform" >
</argument>
<argument index= "1" name= "weight" type= "float" >
</argument>
<description >
2017-09-14 07:42:21 +02:00
Interpolates the transform to other Transform by weight amount (0-1).
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "inverse" >
<return type= "Transform" >
</return>
<description >
Returns the inverse of the transform, under the assumption that the transformation is composed of rotation and translation (no scaling, use affine_inverse for transforms with scaling).
</description>
</method>
<method name= "looking_at" >
<return type= "Transform" >
</return>
<argument index= "0" name= "target" type= "Vector3" >
</argument>
<argument index= "1" name= "up" type= "Vector3" >
</argument>
<description >
2018-04-29 15:44:07 +02:00
Returns a copy of the transform rotated such that its -Z axis points towards the [code]target[/code] position.
The transform will first be rotated around the given [code]up[/code] vector, and then fully aligned to the target by a further rotation around an axis perpendicular to both the [code]target[/code] and [code]up[/code] vectors.
Operations take place in global space.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "orthonormalized" >
<return type= "Transform" >
</return>
<description >
2017-10-14 12:45:26 +02:00
Returns the transform with the basis orthogonal (90 degrees), and normalized axis vectors.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "rotated" >
<return type= "Transform" >
</return>
<argument index= "0" name= "axis" type= "Vector3" >
</argument>
<argument index= "1" name= "phi" type= "float" >
</argument>
<description >
2017-09-14 07:42:21 +02:00
Rotates the transform around given axis by phi. The axis must be a normalized vector.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "scaled" >
<return type= "Transform" >
</return>
<argument index= "0" name= "scale" type= "Vector3" >
</argument>
<description >
2017-09-14 07:42:21 +02:00
Scales the transform by the specified 3D scaling factors.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "translated" >
<return type= "Transform" >
</return>
<argument index= "0" name= "ofs" type= "Vector3" >
</argument>
<description >
2017-09-14 07:42:21 +02:00
Translates the transform by the specified offset.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "xform" >
2018-08-31 22:38:28 +02:00
<return type= "Variant" >
2017-09-12 22:42:36 +02:00
</return>
2018-08-31 22:38:28 +02:00
<argument index= "0" name= "v" type= "Variant" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2018-01-30 12:45:54 +01:00
Transforms the given [Vector3], [Plane], or [AABB] by this transform.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "xform_inv" >
2018-08-31 22:38:28 +02:00
<return type= "Variant" >
2017-09-12 22:42:36 +02:00
</return>
2018-08-31 22:38:28 +02:00
<argument index= "0" name= "v" type= "Variant" >
2017-09-12 22:42:36 +02:00
</argument>
<description >
2018-01-30 12:45:54 +01:00
Inverse-transforms the given [Vector3], [Plane], or [AABB] by this transform.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "basis" type= "Basis" setter= "" getter= "" default= "Basis( 1, 0, 0, 0, 1, 0, 0, 0, 1 )" >
2017-09-12 22:42:36 +02:00
The basis is a matrix containing 3 [Vector3] as its columns: X axis, Y axis, and Z axis. These vectors can be interpreted as the basis vectors of local coordinate system traveling with the object.
</member>
2019-06-29 12:38:01 +02:00
<member name= "origin" type= "Vector3" setter= "" getter= "" default= "Vector3( 0, 0, 0 )" >
2017-09-12 22:42:36 +02:00
The translation offset of the transform.
</member>
</members>
<constants >
2018-08-21 00:35:30 +02:00
<constant name= "IDENTITY" value= "Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 )" >
</constant>
<constant name= "FLIP_X" value= "Transform( -1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 )" >
</constant>
2019-04-15 14:49:41 +02:00
<constant name= "FLIP_Y" value= "Transform( 1, 0, 0, 0, -1, 0, 0, 0, 1, 0, 0, 0 )" >
2018-08-21 00:35:30 +02:00
</constant>
2019-04-15 14:49:41 +02:00
<constant name= "FLIP_Z" value= "Transform( 1, 0, 0, 0, 1, 0, 0, 0, -1, 0, 0, 0 )" >
2018-08-21 00:35:30 +02:00
</constant>
2017-09-12 22:42:36 +02:00
</constants>
</class>