Specify return value of Transform3D.scaled() and more
Add more `[code]` (Transform3D)
Co-authored-by: kleonc <9283098+kleonc@users.noreply.github.com>
Add more `[code]` (Transform2D)
Co-authored-by: kleonc <9283098+kleonc@users.noreply.github.com>
(cherry picked from commit 87599054d2
)
This commit is contained in:
parent
c89c21145b
commit
15f9803d28
|
@ -103,21 +103,21 @@
|
||||||
<argument index="0" name="axis" type="Vector3" />
|
<argument index="0" name="axis" type="Vector3" />
|
||||||
<argument index="1" name="phi" type="float" />
|
<argument index="1" name="phi" type="float" />
|
||||||
<description>
|
<description>
|
||||||
Rotates the transform around the given axis by the given angle (in radians), using matrix multiplication. The axis must be a normalized vector.
|
Returns a copy of the transform rotated around the given [code]axis[/code] by the given [code]phi[/code] angle (in radians), using matrix multiplication. The [code]axis[/code] must be a normalized vector.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="scaled">
|
<method name="scaled">
|
||||||
<return type="Transform" />
|
<return type="Transform" />
|
||||||
<argument index="0" name="scale" type="Vector3" />
|
<argument index="0" name="scale" type="Vector3" />
|
||||||
<description>
|
<description>
|
||||||
Scales basis and origin of the transform by the given scale factor, using matrix multiplication.
|
Returns a copy of the transform with its basis and origin scaled by the given [code]scale[/code] factor, using matrix multiplication.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="translated">
|
<method name="translated">
|
||||||
<return type="Transform" />
|
<return type="Transform" />
|
||||||
<argument index="0" name="offset" type="Vector3" />
|
<argument index="0" name="offset" type="Vector3" />
|
||||||
<description>
|
<description>
|
||||||
Translates the transform by the given offset, relative to the transform's basis vectors.
|
Returns a copy of the transform translated by the given [code]offset[/code], relative to the transform's basis vectors.
|
||||||
Unlike [method rotated] and [method scaled], this does not use matrix multiplication.
|
Unlike [method rotated] and [method scaled], this does not use matrix multiplication.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
|
|
@ -109,21 +109,21 @@
|
||||||
<return type="Transform2D" />
|
<return type="Transform2D" />
|
||||||
<argument index="0" name="phi" type="float" />
|
<argument index="0" name="phi" type="float" />
|
||||||
<description>
|
<description>
|
||||||
Rotates the transform by the given angle (in radians), using matrix multiplication.
|
Returns a copy of the transform rotated by the given [code]phi[/code] angle (in radians), using matrix multiplication.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="scaled">
|
<method name="scaled">
|
||||||
<return type="Transform2D" />
|
<return type="Transform2D" />
|
||||||
<argument index="0" name="scale" type="Vector2" />
|
<argument index="0" name="scale" type="Vector2" />
|
||||||
<description>
|
<description>
|
||||||
Scales the transform by the given scale factor, using matrix multiplication.
|
Returns a copy of the transform scaled by the given [code]scale[/code] factor, using matrix multiplication.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
<method name="translated">
|
<method name="translated">
|
||||||
<return type="Transform2D" />
|
<return type="Transform2D" />
|
||||||
<argument index="0" name="offset" type="Vector2" />
|
<argument index="0" name="offset" type="Vector2" />
|
||||||
<description>
|
<description>
|
||||||
Translates the transform by the given offset, relative to the transform's basis vectors.
|
Returns a copy of the transform translated by the given [code]offset[/code], relative to the transform's basis vectors.
|
||||||
Unlike [method rotated] and [method scaled], this does not use matrix multiplication.
|
Unlike [method rotated] and [method scaled], this does not use matrix multiplication.
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
|
|
Loading…
Reference in New Issue