Update documentation's "Prints" comments after #47502

This commit is contained in:
Micky 2024-11-11 18:21:40 +01:00
parent 893bbdfde8
commit d90f045d24
14 changed files with 84 additions and 84 deletions

View file

@ -213,9 +213,9 @@
<description>
Creates a unit [Vector2] rotated to the given [param angle] in radians. This is equivalent to doing [code]Vector2(cos(angle), sin(angle))[/code] or [code]Vector2.RIGHT.rotated(angle)[/code].
[codeblock]
print(Vector2.from_angle(0)) # Prints (1, 0).
print(Vector2(1, 0).angle()) # Prints 0, which is the angle used above.
print(Vector2.from_angle(PI / 2)) # Prints (0, 1).
print(Vector2.from_angle(0)) # Prints (1.0, 0.0).
print(Vector2(1, 0).angle()) # Prints 0.0, which is the angle used above.
print(Vector2.from_angle(PI / 2)) # Prints (0.0, 1.0).
[/codeblock]
</description>
</method>
@ -477,7 +477,7 @@
<description>
Multiplies each component of the [Vector2] by the components of the given [Vector2].
[codeblock]
print(Vector2(10, 20) * Vector2(3, 4)) # Prints "(30, 80)"
print(Vector2(10, 20) * Vector2(3, 4)) # Prints (30.0, 80.0)
[/codeblock]
</description>
</operator>
@ -501,7 +501,7 @@
<description>
Adds each component of the [Vector2] by the components of the given [Vector2].
[codeblock]
print(Vector2(10, 20) + Vector2(3, 4)) # Prints "(13, 24)"
print(Vector2(10, 20) + Vector2(3, 4)) # Prints (13.0, 24.0)
[/codeblock]
</description>
</operator>
@ -511,7 +511,7 @@
<description>
Subtracts each component of the [Vector2] by the components of the given [Vector2].
[codeblock]
print(Vector2(10, 20) - Vector2(3, 4)) # Prints "(7, 16)"
print(Vector2(10, 20) - Vector2(3, 4)) # Prints (7.0, 16.0)
[/codeblock]
</description>
</operator>
@ -521,7 +521,7 @@
<description>
Divides each component of the [Vector2] by the components of the given [Vector2].
[codeblock]
print(Vector2(10, 20) / Vector2(2, 5)) # Prints "(5, 4)"
print(Vector2(10, 20) / Vector2(2, 5)) # Prints (5.0, 4.0)
[/codeblock]
</description>
</operator>