From c81c671131e3a20b4d97f4b2207c62ca73dfdee2 Mon Sep 17 00:00:00 2001 From: Bojidar Marinov Date: Sun, 29 Nov 2015 15:38:47 +0200 Subject: [PATCH] Run -doctool on existing documentation Also, s/vecor/vector/ --- doc/base/classes.xml | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/doc/base/classes.xml b/doc/base/classes.xml index 12f90628880..48e7c304fdf 100644 --- a/doc/base/classes.xml +++ b/doc/base/classes.xml @@ -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. @@ -27525,6 +27525,12 @@ This method controls whether the position between two cached points is interpola + + + + + + @@ -33139,7 +33145,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 +33180,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 +37760,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.