2D Transformation. 3x2 matrix. Represents one or many transformations in 3D space such as translation, rotation, or scaling. It consists of a two [Vector2] x, y and [Vector2] "origin". It is similar to a 3x2 matrix. Constructs the [Transform2D] from a 3D [Transform]. Constructs the [Transform2D] from 3 [Vector2] consisting of rows x, y and origin. Constructs the [Transform2D] from rotation angle in radians and position [Vector2]. Returns the inverse of the matrix. Transforms the given vector "v" by this transform basis (no translation). Inverse-transforms vector "v" by this transform basis (no translation). Return the origin [Vector2] (translation). Return the rotation (in radians). Return the scale. Interpolate to other Transform2D by weight amount (0-1). 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). Returns a transfrom with the basis orthogonal (90 degrees), and normalized axis vectors. Rotate the transform by phi. Scale the transform by the specified 2D scaling factors. Translate the transform by the specified offset. Transforms the given vector "v" by this transform. Inverse-transforms the given vector "v" by this transform. The translation offset of the transform. The X axis of 2x2 basis matrix containing 2 [Vector2] as its columns: X axis and Y axis. These vectors can be interpreted as the basis vectors of local coordinate system traveling with the object. The Y axis of 2x2 basis matrix containing 2 [Vector2] as its columns: X axis and Y axis. These vectors can be interpreted as the basis vectors of local coordinate system traveling with the object.