diff --git a/doc/base/classes.xml b/doc/base/classes.xml
index 12f9062888..fd5df945ba 100644
--- a/doc/base/classes.xml
+++ b/doc/base/classes.xml
@@ -1603,7 +1603,7 @@
Axis-Aligned Bounding Box.
- AABB provides an 3D Axis-Aligned Bounding Box. It consists of a position and a size, and several utility functions. It is typically used for simple (fast) overlap tests.
+ AABB provides an 3D Axis-Aligned Bounding Box. It consists of a position, a size, and several utility functions. It is typically used for simple (fast) overlap tests.
@@ -1628,7 +1628,7 @@
- Get the area inside the [AABB].
+ Get the area of the [AABB].
@@ -1697,7 +1697,7 @@
- Return a copy of the AABB grown a given a mount of units towards all the sides.
+ Return a copy of the [AABB] grown a given amount of units towards all the sides.
@@ -1747,7 +1747,7 @@
- Return true if the AABB is at both sides of a plane.
+ Return true if the [AABB] is at both sides of a plane.
@@ -1766,7 +1766,7 @@
- Combine this [AABB] with another one, a larger one is returned that contains both.
+ Combine this [AABB] with another, a larger one is returned that contains both.
@@ -26372,14 +26372,14 @@ This method controls whether the position between two cached points is interpola
- Returns a copy of the array's contents formatted as String. Fast alternative to get_string_from_utf8(), assuming the content is ASCII-only (unlike the UTF-8 function, this function maps every byte to a character in the string, so any multibyte sequence will be torn apart).
+ Returns a copy of the array's contents formatted as String. Fast alternative to get_string_from_utf8(), assuming the content is ASCII-only (unlike the UTF-8 function, this function maps every byte to a character in the string, so any multibyte sequence will be torn apart).
- Returns a copy of the array's contents formatted as String, assuming the array is formatted as UTF-8. Slower than get_string_from_ascii(), but works for UTF-8. Usually you should prefer this function over get_string_from_ascii() to support international input.
+ Returns a copy of the array's contents formatted as String, assuming the array is formatted as UTF-8. Slower than get_string_from_ascii(), but works for UTF-8. Usually you should prefer this function over get_string_from_ascii() to support international input.
@@ -26734,8 +26734,10 @@ This method controls whether the position between two cached points is interpola
+ 2D Axis-aligned bounding box.
+ Rect2 provides an 2D Axis-Aligned Bounding Box. It consists of a position, a size, and several utility functions. It is typically used for fast overlap tests.
@@ -26744,6 +26746,7 @@ This method controls whether the position between two cached points is interpola
+ Returns the intersection of this [Rect2] and b.
@@ -26752,6 +26755,7 @@ This method controls whether the position between two cached points is interpola
+ Returns true if this [Rect2] completely encloses another one.
@@ -26760,12 +26764,14 @@ This method controls whether the position between two cached points is interpola
+ Return this [Rect2] expanded to include a given point.
+ Get the area of the [Rect2].
@@ -26774,12 +26780,14 @@ This method controls whether the position between two cached points is interpola
+ Return a copy of the [Rect2] grown a given amount of units towards all the sides.
+ Return true if the [Rect2] is flat or empty.
@@ -26788,6 +26796,7 @@ This method controls whether the position between two cached points is interpola
+ Return true if the [Rect2] contains a point.
@@ -26796,6 +26805,7 @@ This method controls whether the position between two cached points is interpola
+ Return true if the [Rect2] overlaps with another.
@@ -26804,6 +26814,7 @@ This method controls whether the position between two cached points is interpola
+ Combine this [Rect2] with another, a larger one is returned that contains both.
@@ -26814,6 +26825,7 @@ This method controls whether the position between two cached points is interpola
+ Construct a [Rect2] by position and size.
@@ -26828,6 +26840,7 @@ This method controls whether the position between two cached points is interpola
+ Construct a [Rect2] by x, y, width and height.
@@ -27525,6 +27538,12 @@ This method controls whether the position between two cached points is interpola
+
+
+
+
+
+
@@ -33139,7 +33158,7 @@ This method controls whether the position between two cached points is interpola
- Convert the String (which is a character array) to RawArray (which is an array of bytes). The conversion is speeded up in comparison to to_utf8() with the assumption that all the characters the String contains are only ASCII characters.
+ Convert the String (which is a character array) to RawArray (which is an array of bytes). The conversion is speeded up in comparison to to_utf8() with the assumption that all the characters the String contains are only ASCII characters.
@@ -33174,7 +33193,7 @@ This method controls whether the position between two cached points is interpola
- Convert the String (which is an array of characters) to RawArray (which is an array of bytes). The conversion is a bit slower than to_ascii(), but supports all UTF-8 characters. Therefore, you should prefer this function over to_ascii().
+ Convert the String (which is an array of characters) to RawArray (which is an array of bytes). The conversion is a bit slower than to_ascii(), but supports all UTF-8 characters. Therefore, you should prefer this function over to_ascii().
@@ -37754,7 +37773,7 @@ This method controls whether the position between two cached points is interpola
Vector class, which performs basic 3D vector math operations.
- Vector3 is one of the core classes of the engine, and includes several built-in helper functions to perform basic vecor math operations.
+ Vector3 is one of the core classes of the engine, and includes several built-in helper functions to perform basic vector math operations.