2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Remove Text util methods

This commit is contained in:
ChrisDill 2023-06-04 18:00:18 +01:00
parent 3c61eed521
commit b0cab0d257

View File

@ -869,28 +869,6 @@ namespace Raylib_cs
return MeasureTextEx(font, str1.AsPointer(), fontSize, spacing); return MeasureTextEx(font, str1.AsPointer(), fontSize, spacing);
} }
/// <summary>Append text at specific position and move cursor!</summary>
public static void TextAppend(string text, string append, int position)
{
using var str1 = text.ToUTF8Buffer();
using var str2 = append.ToUTF8Buffer();
TextAppend(str1.AsPointer(), str2.AsPointer(), &position);
}
/// <summary>Get Pascal case notation version of provided string</summary>
public static string TextToPascal(string text)
{
using var str1 = text.ToUTF8Buffer();
return Utf8StringUtils.GetUTF8String(TextToPascal(str1.AsPointer()));
}
/// <summary>Get integer value from text (negative values not supported)</summary>
public static int TextToInteger(string text)
{
using var str1 = text.ToUTF8Buffer();
return TextToInteger(str1.AsPointer());
}
/// <summary>Get all codepoints in a string, codepoints count returned by parameters</summary> /// <summary>Get all codepoints in a string, codepoints count returned by parameters</summary>
public static int[] LoadCodepoints(string text, ref int count) public static int[] LoadCodepoints(string text, ref int count)
{ {