diff options
author | kleonc <9283098+kleonc@users.noreply.github.com> | 2023-03-29 23:56:34 +0200 |
---|---|---|
committer | kleonc <9283098+kleonc@users.noreply.github.com> | 2023-03-31 10:59:11 +0200 |
commit | f53d3382af3ce04c924e6f92bb4c81ba349cfd8f (patch) | |
tree | 3b94b472d8c848fd112093cef25f005166923b9d /doc/classes | |
parent | c29866dbc05694594b9be68b8d451816c7a0889d (diff) | |
download | redot-engine-f53d3382af3ce04c924e6f92bb4c81ba349cfd8f.tar.gz |
C# Truncate instead of round in Vector2/3/4 to Vector2I/3I/4I conversion
Diffstat (limited to 'doc/classes')
-rw-r--r-- | doc/classes/Vector2i.xml | 2 | ||||
-rw-r--r-- | doc/classes/Vector3i.xml | 2 | ||||
-rw-r--r-- | doc/classes/Vector4i.xml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/classes/Vector2i.xml b/doc/classes/Vector2i.xml index 8c977dbc67..8db6bcc1b9 100644 --- a/doc/classes/Vector2i.xml +++ b/doc/classes/Vector2i.xml @@ -31,7 +31,7 @@ <return type="Vector2i" /> <param index="0" name="from" type="Vector2" /> <description> - Constructs a new [Vector2i] from [Vector2]. The floating point coordinates will be truncated. + Constructs a new [Vector2i] from the given [Vector2] by truncating components' fractional parts (rounding towards zero). For a different behavior consider passing the result of [method Vector2.ceil], [method Vector2.floor] or [method Vector2.round] to this constructor instead. </description> </constructor> <constructor name="Vector2i"> diff --git a/doc/classes/Vector3i.xml b/doc/classes/Vector3i.xml index 91ccfb6d81..248b47db92 100644 --- a/doc/classes/Vector3i.xml +++ b/doc/classes/Vector3i.xml @@ -31,7 +31,7 @@ <return type="Vector3i" /> <param index="0" name="from" type="Vector3" /> <description> - Constructs a new [Vector3i] from [Vector3]. The floating point coordinates will be truncated. + Constructs a new [Vector3i] from the given [Vector3] by truncating components' fractional parts (rounding towards zero). For a different behavior consider passing the result of [method Vector3.ceil], [method Vector3.floor] or [method Vector3.round] to this constructor instead. </description> </constructor> <constructor name="Vector3i"> diff --git a/doc/classes/Vector4i.xml b/doc/classes/Vector4i.xml index 93377c9599..e2de7a28dc 100644 --- a/doc/classes/Vector4i.xml +++ b/doc/classes/Vector4i.xml @@ -27,7 +27,7 @@ <return type="Vector4i" /> <param index="0" name="from" type="Vector4" /> <description> - Constructs a new [Vector4i] from the given [Vector4]. + Constructs a new [Vector4i] from the given [Vector4] by truncating components' fractional parts (rounding towards zero). For a different behavior consider passing the result of [method Vector4.ceil], [method Vector4.floor] or [method Vector4.round] to this constructor instead. </description> </constructor> <constructor name="Vector4i"> |