User contributions

Jump to: navigation, search
Search for contributions
 
 
     
  

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)

  • 19:36, 22 August 2012 (diff | hist) . . (+260). . N PrintBool(Created page with "<onlyinclude> Prints the given bool with the given prefix text - to the console, if its available. </onlyinclude> <syntaxhighlight lang="cpp"> void printBool(const string &prefix...") (current)
  • 19:35, 22 August 2012 (diff | hist) . . (+263). . N PrintVec2f(Created page with "<onlyinclude> Prints the given Vec2f with the given prefix text - to the console, if its available. </onlyinclude> <syntaxhighlight lang="cpp"> void printVec2f(const string &pref...")
  • 19:35, 22 August 2012 (diff | hist) . . (+275). . N PrintString(Created page with "<onlyinclude> Prints the given string with the given prefix text - to the console, if its available. </onlyinclude> <syntaxhighlight lang="cpp"> void printString(const string &pr...") (current)
  • 19:34, 22 August 2012 (diff | hist) . . (+261). . N PrintFloat(Created page with "<onlyinclude> Prints the given float with the given prefix text - to the console, if its available. </onlyinclude> <syntaxhighlight lang="cpp"> void printFloat(const string &pref...") (current)
  • 19:33, 22 August 2012 (diff | hist) . . (+35). . PrintInt(current)
  • 19:32, 22 August 2012 (diff | hist) . . (+226). . N PrintInt(Created page with "<onlyinclude> Prints the given integer with the given prefix text. </onlyinclude> <syntaxhighlight lang="cpp"> void printInt(const string &prefix, int i) </syntaxhighlight> [[Ca...")
  • 19:28, 22 August 2012 (diff | hist) . . (-30). . Global Functions
  • 19:26, 22 August 2012 (diff | hist) . . (+219). . N Print(Created page with "<onlyinclude> Prints the given text - to the console, if its available. </onlyinclude> <syntaxhighlight lang="cpp"> void print(const string &text) </syntaxhighlight> [[Category:...") (current)
  • 19:18, 22 August 2012 (diff | hist) . . (+371). . N ParseFloat(Created page with "<onlyinclude> Returns a double from the given string representation of an float. </onlyinclude> See the following page for details: http://www.angelcode.com/angelscript/sdk/docs...") (current)
  • 19:17, 22 August 2012 (diff | hist) . . (+384). . N ParseInt(Created page with "<onlyinclude> Returns an int from the given string representation of an int. </onlyinclude> See the following page for details: http://www.angelcode.com/angelscript/sdk/docs/man...") (current)
  • 19:14, 22 August 2012 (diff | hist) . . (+399). . N FormatFloat(Created page with "<onlyinclude> Returns a formatted string representation of the given float. </onlyinclude> See the following page for details: http://www.angelcode.com/angelscript/sdk/docs/manu...") (current)
  • 19:14, 22 August 2012 (diff | hist) . . (+374). . N FormatInt(Created page with "<onlyinclude> Returns a formatted string representation of the given int. </onlyinclude> See the following page for details: http://www.angelcode.com/angelscript/sdk/docs/manual...") (current)
  • 19:00, 22 August 2012 (diff | hist) . . (+288). . N FastRandom(Created page with "<onlyinclude> Returns a seemingly-random (much less random than Random, though it is faster) int in the range 0 to the given max int. </onlyinclude> <syntaxhighlight lang="cp...")
  • 18:59, 22 August 2012 (diff | hist) . . (+94). . Random
  • 18:46, 22 August 2012 (diff | hist) . . (+215). . N Random(Created page with "<onlyinclude> Returns a pseudo-random int in the range 0 to the given max int. </onlyinclude> <syntaxhighlight lang="cpp"> int Random(int max) </syntaxhighlight> [[Category:Scri...")
  • 18:41, 22 August 2012 (diff | hist) . . (-116). . Global Functions
  • 18:36, 22 August 2012 (diff | hist) . . (0). . Roundf
  • 18:36, 22 August 2012 (diff | hist) . . (+212). . N Round(Created page with "<onlyinclude> Rounds the given float to the nearest whole number, as an int. </onlyinclude> <syntaxhighlight lang="cpp"> int Round(float x) </syntaxhighlight> [[Category:Scripti...")
  • 18:35, 22 August 2012 (diff | hist) . . (+216). . N Roundf(Created page with "<onlyinclude> Rounds the given float to the nearest whole number, as a float. </onlyinclude> <syntaxhighlight lang="cpp"> float Roundf(float a) </syntaxhighlight> [[Category:Scr...")
  • 18:16, 22 August 2012 (diff | hist) . . (+271). . N FMod(Created page with "<onlyinclude> Returns the floating-point remainder of the given numerator divided by the given denominator. </onlyinclude> <syntaxhighlight lang="cpp"> float FMod(float numerator...")
  • 18:11, 22 August 2012 (diff | hist) . . (+280). . N Abs(Created page with "<onlyinclude> Returns the absolute value of the given number. </onlyinclude> This method has two variants - one for ints, the other for floats. <syntaxhighlight lang="cpp"> int ...")
  • 17:58, 22 August 2012 (diff | hist) . . (+293). . N Max(Created page with "<onlyinclude> Returns the larger of the two given numbers. </onlyinclude> This method has two variants - one for ints, the other for floats. <syntaxhighlight lang="cpp"> float M...")
  • 17:58, 22 August 2012 (diff | hist) . . (+294). . N Min(Created page with "<onlyinclude> Returns the smaller of the two given numbers. </onlyinclude> This method has two variants - one for ints, the other for floats. <syntaxhighlight lang="cpp"> float ...")
  • 17:56, 22 August 2012 (diff | hist) . . (+225). . N Equals(Created page with "<onlyinclude> Returns true if the two given floats are equal, otherwise false. </onlyinclude> <syntaxhighlight lang="cpp"> bool Equals(float a, float b) </syntaxhighlight> [[Cat...")
  • 17:52, 22 August 2012 (diff | hist) . . (+226). . N Ceil(Created page with "<onlyinclude> Returns the smallest integral value that is not less than the given number. </onlyinclude> <syntaxhighlight lang="cpp"> float Ceil(float x) </syntaxhighlight> [[Ca...")
  • 17:49, 22 August 2012 (diff | hist) . . (+229). . N Floor(Created page with "<onlyinclude> Returns the largest integral value that is not greater than the given number. </onlyinclude> <syntaxhighlight lang="cpp"> float Floor(float x) </syntaxhighlight> [...")
  • 17:46, 22 August 2012 (diff | hist) . . (+232). . N IsValid(Created page with "<onlyinclude> Returns true if the given float is a valid number (not NaN or infinity) or not. </onlyinclude> <syntaxhighlight lang="cpp"> bool isValid(float x) </syntaxhighlight>...")
  • 17:43, 22 August 2012 (diff | hist) . . (+191). . N InvSqrt(Created page with "<onlyinclude> Returns the inverse square root of x. </onlyinclude> <syntaxhighlight lang="cpp"> float InvSqrt(float x) </syntaxhighlight> Category:Scripting [[Category:Globa...")
  • 17:38, 22 August 2012 (diff | hist) . . (+180). . N Sqrt(Created page with "<onlyinclude> Returns the square root of x. </onlyinclude> <syntaxhighlight lang="cpp"> float Sqrt(float x) </syntaxhighlight> Category:Scripting Category:Global Functions")
  • 17:34, 22 August 2012 (diff | hist) . . (-34). . Global Functions
  • 17:32, 22 August 2012 (diff | hist) . . (+347). . N Pow(Created page with "<onlyinclude> Returns base raised to the power exponent. </onlyinclude> This method has 3 variants, for different argument types. <syntaxhighlight lang="cpp"> float Pow(float ba...")
  • 17:19, 22 August 2012 (diff | hist) . . (+211). . N ATan(Created page with "<onlyinclude> Returns the arc tangent of the given angle in radians. </onlyinclude> <syntaxhighlight lang="cpp"> float ATan(float radians) </syntaxhighlight> [[Category:Scriptin...")
  • 17:19, 22 August 2012 (diff | hist) . . (+208). . N ASin(Created page with "<onlyinclude> Returns the arc sine of the given angle in radians. </onlyinclude> <syntaxhighlight lang="cpp"> float ASin(float radians) </syntaxhighlight> Category:Scripting...")
  • 17:19, 22 August 2012 (diff | hist) . . (+210). . N ACos(Created page with "<onlyinclude> Returns the arc cosine of the given angle in radians. </onlyinclude> <syntaxhighlight lang="cpp"> float ACos(float radians) </syntaxhighlight> [[Category:Scripting...")
  • 17:18, 22 August 2012 (diff | hist) . . (+238). . N FastSin(Created page with "<onlyinclude> Returns the sine of the given angle in radians. Faster, less reliable version. </onlyinclude> <syntaxhighlight lang="cpp"> float FastSin(float radians) </syntaxhigh...")
  • 17:18, 22 August 2012 (diff | hist) . . (+240). . N FastCos(Created page with "<onlyinclude> Returns the cosine of the given angle in radians. Faster, less reliable version. </onlyinclude> <syntaxhighlight lang="cpp"> float FastCos(float radians) </syntaxhi...")
  • 17:17, 22 August 2012 (diff | hist) . . (+206). . N Tan(Created page with "<onlyinclude> Returns the tangent of the given angle in radians. </onlyinclude> <syntaxhighlight lang="cpp"> float Tan(float radians) </syntaxhighlight> Category:Scripting [...")
  • 17:17, 22 August 2012 (diff | hist) . . (+203). . N Sin(Created page with "<onlyinclude> Returns the sine of the given angle in radians. </onlyinclude> <syntaxhighlight lang="cpp"> float Sin(float radians) </syntaxhighlight> Category:Scripting [[Ca...")
  • 17:17, 22 August 2012 (diff | hist) . . (0). . Cos
  • 17:14, 22 August 2012 (diff | hist) . . (+34). . Cos
  • 17:12, 22 August 2012 (diff | hist) . . (0). . Cos
  • 17:12, 22 August 2012 (diff | hist) . . (+171). . N Cos(Created page with "<onlyinclude> Maths function - cos. </onlyinclude> <syntaxhighlight lang="cpp"> float Cos(float v) </syntaxhighlight> Category:Scripting Category:Global Functions")
  • 17:09, 22 August 2012 (diff | hist) . . (+1). . LoadSkin
  • 17:09, 22 August 2012 (diff | hist) . . (+1). . DrawPane
  • 17:09, 22 August 2012 (diff | hist) . . (+1). . DrawSunkenPane
  • 17:09, 22 August 2012 (diff | hist) . . (+1). . DrawWindow
  • 17:08, 22 August 2012 (diff | hist) . . (-2). . DrawFramedPane
  • 17:08, 22 August 2012 (diff | hist) . . (+1). . DrawButton
  • 17:08, 22 August 2012 (diff | hist) . . (+1). . DrawButtonPressed
  • 17:08, 22 August 2012 (diff | hist) . . (+3). . DrawButtonHover

(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)