
MathLib
the MathLib offers some really useful functions but there's one i'm definitely missing:
Code: Select all
Real Round(Real _Value, Integer _DecimalPlaces);
Code: Select all
declare RoundedReal = MathLib::NearestInteger(Real * 100.) / 100.;
Code: Select all
Real ToReal (Integer _Argument1);
Real NearestReal (Integer _Argument1);
Code: Select all
Real Pow (Real _Argument1, Real _Argument2);
[would be better like this]
Real Pow (Real _Base, Real _Exponent);

TextLib
what's the point of the following method?
Code: Select all
Text FormatInteger (Integer _Argument1, Integer _Argument2);
it's quite difficult and i can't really think of a good solution actually

Code: Select all
Integer Width(Text _Argument);
Code: Select all
Text StripLinks (Text _Argument);
Text StripColors (Text _Argument);
Text StripStyles (Text _Argument);
steff