diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-06-27 08:42:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-27 08:42:01 +0200 |
commit | 68f7cf13c7326c077cc6ff8a6a267ae2610c4519 (patch) | |
tree | ad4fefacf8a9d4a8259274789a6773649b14aa0f | |
parent | be9731459a1037829bda14dff531afe68389e872 (diff) | |
parent | 61fd3cd32a06744bdc74e1b6adc5d1ffcc633491 (diff) |
Merge pull request #19794 from Calinou/document-vector2-vector3-round
Document Vector2.round() and Vector3.round()
-rw-r--r-- | doc/classes/Vector2.xml | 1 | ||||
-rw-r--r-- | doc/classes/Vector3.xml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/doc/classes/Vector2.xml b/doc/classes/Vector2.xml index ba62a385af..6ffeddf5c1 100644 --- a/doc/classes/Vector2.xml +++ b/doc/classes/Vector2.xml @@ -207,6 +207,7 @@ <return type="Vector2"> </return> <description> + Returns the vector with all components rounded to the nearest integer, with halfway cases rounded away from zero. </description> </method> <method name="slerp"> diff --git a/doc/classes/Vector3.xml b/doc/classes/Vector3.xml index c754b27f1e..62a480166a 100644 --- a/doc/classes/Vector3.xml +++ b/doc/classes/Vector3.xml @@ -208,6 +208,7 @@ <return type="Vector3"> </return> <description> + Returns the vector with all components rounded to the nearest integer, with halfway cases rounded away from zero. </description> </method> <method name="slerp"> |