New pages

From Spheriki

Jump to: navigation, search
New pages
Hide logged-in users | Hide bots | Show redirects
(Latest | Earliest) View (newer 50) () (20 | 50 | 100 | 250 | 500).
  • 18:06, 27 March 2012 ‎Map engine (hist) ‎[1,979 bytes] ‎DaVince (Talk | contribs) (stubby stub for the map engine page)
  • 06:34, 19 March 2012 ‎UnitTest (hist) ‎[2,687 bytes] ‎FEEK (Talk | contribs) (Created page with "== Sphere Unit Test Framework == Author: Andrew "Radnen" Helenius Version: 1.0 The UnitTest Framework helps testing Sphere games a breeze. Unit testing is a software enginee...")
  • 00:11, 26 January 2012 ‎Sphere 2 Canvas.drawSubImage (hist) ‎[769 bytes] ‎Kyuu (Talk | contribs) (Created page with "Draw a section of an image at the specified position. == Prototype == <center>'''Canvas.drawSubImage'''(''image'', ''ox'', ''oy'', ''width'', ''height'', ''x'', ''y'')</center...")
  • 00:06, 26 January 2012 ‎Sphere 2 Canvas.drawImage (hist) ‎[571 bytes] ‎Kyuu (Talk | contribs) (Created page with "Draw an image in the frame buffer at the specified position. == Prototype == <center>'''Canvas.drawImage'''(''image'', ''x'', ''y'')</center> == Parameters == * '''image'''...")
  • 00:01, 26 January 2012 ‎Sphere 2 Canvas.drawCircle (hist) ‎[707 bytes] ‎Kyuu (Talk | contribs) (Created page with "Draw a circle. == Prototype == <center>'''Canvas.drawCircle'''(''x'', ''y'', ''radius'', ''fill'', ''col1'' [, ''col2''])</center> == Parameters == * '''x''', '''y''': The ...")
  • 23:53, 25 January 2012 ‎Sphere 2 Canvas.drawRect (hist) ‎[900 bytes] ‎Kyuu (Talk | contribs) (Created page with "Draw a rectangle with the specified corner colors. == Prototype == <center>'''Canvas.drawRect'''(''x'', ''y'', ''width'', ''height'', ''col1'' [, ''col2'', ''col3'', ''col4'']...")
  • 23:50, 25 January 2012 ‎Sphere 2 Canvas.drawLine (hist) ‎[663 bytes] ‎Kyuu (Talk | contribs) (Created page with "Draw a line from (x1, y1) to (x2, y2) not including the end point with a color fading from col1 to col2. == Prototype == <center>'''Canvas.drawLine'''(''x1'', ''y1'', ''x2'', ...")
  • 23:46, 25 January 2012 ‎Sphere 2 Canvas.setBlendMode (hist) ‎[591 bytes] ‎Kyuu (Talk | contribs) (Created page with "Set current blend mode. == Prototype == <center>'''Canvas.setBlendMode'''(''blendMode'')</center> == Parameters == * '''blendMode''': A blend mode constant. Can be one of: ...")
  • 23:44, 25 January 2012 ‎Sphere 2 Canvas.getBlendMode (hist) ‎[607 bytes] ‎Kyuu (Talk | contribs) (Created page with "Get current blend mode. == Prototype == <center>'''Canvas.getBlendMode'''()</center> == Parameters == None. == Return Value == Returns current blend mode. == Examples ...")
  • 23:40, 25 January 2012 ‎Sphere 2 Canvas.setScissor (hist) ‎[587 bytes] ‎Kyuu (Talk | contribs) (Created page with "Set the rectangular area in the canvas where drawing operations will have an effect. == Prototype == <center>'''Canvas.setScissor'''(''scissor'')</center> == Parameters == ...")
  • 23:34, 25 January 2012 ‎Sphere 2 Canvas.getScissor (hist) ‎[519 bytes] ‎Kyuu (Talk | contribs) (Created page with "Get the rectangular area in the canvas where drawing operations will have an effect. == Prototype == <center>'''Canvas.getScissor'''()</center> == Parameters == None. == ...")
  • 23:25, 25 January 2012 ‎Sphere 2 Canvas.rotateCCW (hist) ‎[376 bytes] ‎Kyuu (Talk | contribs) (Created page with "Rotate the canvas counterclockwise. == Prototype == <center>'''Canvas.rotateCCW'''()</center> == Parameters == None. == Return Value == None. == Examples == <pre> loc...")
  • 23:25, 25 January 2012 ‎Sphere 2 Canvas.rotateCW (hist) ‎[360 bytes] ‎Kyuu (Talk | contribs) (Created page with "Rotate the canvas clockwise. == Prototype == <center>'''Canvas.rotateCW'''()</center> == Parameters == None. == Return Value == None. == Examples == <pre> local canva...")
  • 23:21, 25 January 2012 ‎Sphere 2 Canvas.grey (hist) ‎[328 bytes] ‎Kyuu (Talk | contribs) (Created page with "Greys the canvas. == Prototype == <center>'''Canvas.grey'''()</center> == Parameters == None. == Return Value == None. == Examples == <pre> local canvas = Canvas.From...")
  • 23:20, 25 January 2012 ‎Sphere 2 Canvas.replaceColor (hist) ‎[503 bytes] ‎Kyuu (Talk | contribs) (Created page with "Replace a color with a new color. == Prototype == <center>'''Canvas.replaceColor'''(''color'', ''newColor'')</center> == Parameters == * '''color''': The color value to rep...")
  • 23:17, 25 January 2012 ‎Sphere 2 Canvas.setAlpha (hist) ‎[425 bytes] ‎Kyuu (Talk | contribs) (Created page with "Set the alpha of the canvas. == Prototype == <center>'''Canvas.setAlpha'''(''alpha'')</center> == Parameters == * '''alpha''': The new alpha value in the range 0 to 255. ...")
  • 22:57, 25 January 2012 ‎Sphere 2 Canvas.FromBuffer (hist) ‎[513 bytes] ‎Kyuu (Talk | contribs) (Created page with "Create a new Canvas object from a buffer. == Prototype == <center>'''Canvas.FromBuffer'''(''width'', ''height'', ''pixels'')</center> == Parameters == * '''width''', '''hei...")
  • 22:37, 25 January 2012 ‎Sphere 2 Texture.FromCanvas (hist) ‎[478 bytes] ‎Kyuu (Talk | contribs) (Created page with "Create a new texture from a canvas. == Prototype == <center>'''Texture.FromCanvas'''(''canvas'')</center> == Parameters == * '''canvas''': The canvas to create the texture ...")
  • 22:18, 25 January 2012 ‎Sphere 2 Math.easeInOut (hist) ‎[441 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute eased value. == Prototype == <center>'''Math.easeInOut'''(''startVal'', ''endVal'', ''curVal'')</center> == Parameters == * '''startVal''': The start value. * '''en...")
  • 22:17, 25 January 2012 ‎Sphere 2 Math.easeOut (hist) ‎[441 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute eased value. == Prototype == <center>'''Math.easeOut'''(''startVal'', ''endVal'', ''curVal'')</center> == Parameters == * '''startVal''': The start value. * '''endV...")
  • 22:13, 25 January 2012 ‎Sphere 2 Math.easeIn (hist) ‎[438 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute eased value. == Prototype == <center>'''Math.easeIn'''(''startVal'', ''endVal'', ''curVal'')</center> == Parameters == * '''startVal''': The start value. * '''endVa...")
  • 22:09, 25 January 2012 ‎Sphere 2 Math.randf (hist) ‎[275 bytes] ‎Kyuu (Talk | contribs) (Created page with "Generate random number. == Prototype == <center>'''Math.randf'''()</center> == Parameters == None. == Return Value == Returns a pseudo-random floating point number in th...")
  • 22:08, 25 January 2012 ‎Sphere 2 Math.rand (hist) ‎[279 bytes] ‎Kyuu (Talk | contribs) (Created page with "Generate random number. == Prototype == <center>'''Math.rand'''()</center> == Parameters == None. == Return Value == Returns a pseudo-random integral number in the range...")
  • 22:06, 25 January 2012 ‎Sphere 2 Math.max (hist) ‎[322 bytes] ‎Kyuu (Talk | contribs) (Created page with "Return the greater of two arguments. == Prototype == <center>'''Math.max'''(''a'', ''b'')</center> == Parameters == * '''a''': The first value. * '''b''': The second value....")
  • 22:05, 25 January 2012 ‎Sphere 2 Math.min (hist) ‎[319 bytes] ‎Kyuu (Talk | contribs) (Created page with "Return the lesser of two arguments. == Prototype == <center>'''Math.min'''(''a'', ''b'')</center> == Parameters == * '''a''': The first value. * '''b''': The second value. ...")
  • 22:02, 25 January 2012 ‎Sphere 2 Math.abs (hist) ‎[303 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute absolute value. == Prototype == <center>'''Math.abs'''(''x'')</center> == Parameters == * '''x''': The value to compute the absolute value of. == Return Value == ...")
  • 21:51, 25 January 2012 ‎Sphere 2 Math.round (hist) ‎[325 bytes] ‎Kyuu (Talk | contribs) (Created page with "Round value. == Prototype == <center>'''Math.round'''(''x'')</center> == Parameters == * '''x''': The value to round. == Return Value == Returns the rounded down value o...")
  • 21:37, 25 January 2012 ‎Sphere 2 Math.ceil (hist) ‎[283 bytes] ‎Kyuu (Talk | contribs) (Created page with "Round up value. == Prototype == <center>'''Math.ceil'''(''x'')</center> == Parameters == * '''x''': The value to round up. == Return Value == Returns the smallest integr...")
  • 21:36, 25 January 2012 ‎Sphere 2 Math.floor (hist) ‎[293 bytes] ‎Kyuu (Talk | contribs) (Created page with "Round down value. == Prototype == <center>'''Math.floor'''(''x'')</center> == Parameters == * '''x''': The value to round down. == Return Value == Returns the largest in...")
  • 21:33, 25 January 2012 ‎Sphere 2 Math.sqrt (hist) ‎[289 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute square root. == Prototype == <center>'''Math.sqrt'''(''x'')</center> == Parameters == * '''x''': The value to compute the square root of. == Return Value == Retu...")
  • 21:31, 25 January 2012 ‎Sphere 2 Math.pow (hist) ‎[320 bytes] ‎Kyuu (Talk | contribs) (Created page with "Raise to power. == Prototype == <center>'''Math.pow'''(''base'', ''exponent'')</center> == Parameters == * '''base''': The base. * '''exponent''': The exponent. == Return...")
  • 21:28, 25 January 2012 ‎Sphere 2 Math.log10 (hist) ‎[311 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute common logarithm. == Prototype == <center>'''Math.log10'''(''x'')</center> == Parameters == * '''x''': The value to compute the common logarithm of. == Return Val...")
  • 21:27, 25 January 2012 ‎Sphere 2 Math.log2 (hist) ‎[309 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute binary logarithm. == Prototype == <center>'''Math.log2'''(''x'')</center> == Parameters == * '''x''': The value to compute the binary logarithm of. == Return Valu...")
  • 21:26, 25 January 2012 ‎Sphere 2 Math.log (hist) ‎[311 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute natural logarithm. == Prototype == <center>'''Math.log'''(''x'')</center> == Parameters == * '''x''': The value to compute the natural logarithm of. == Return Val...")
  • 21:24, 25 January 2012 ‎Sphere 2 Math.exp (hist) ‎[390 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute exponential function. == Prototype == <center>'''Math.exp'''(''x'')</center> == Parameters == * '''x''': The value to compute the exponential function of. == Retu...")
  • 21:19, 25 January 2012 ‎Sphere 2 Math.sinh (hist) ‎[307 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute hyperbolic sine. == Prototype == <center>'''Math.sinh'''(''x'')</center> == Parameters == * '''x''': The value to compute the hyperbolic sine from. == Return Valu...")
  • 21:18, 25 January 2012 ‎Sphere 2 Math.tanh (hist) ‎[319 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute hyperbolic tangent. == Prototype == <center>'''Math.tanh'''(''x'')</center> == Parameters == * '''x''': The value to compute the hyperbolic tangent from. == Retur...")
  • 21:17, 25 January 2012 ‎Sphere 2 Math.cosh (hist) ‎[315 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute hyperbolic cosine. == Prototype == <center>'''Math.cosh'''(''x'')</center> == Parameters == * '''x''': The value to compute the hyperbolic cosine from. == Return ...")
  • 21:13, 25 January 2012 ‎Sphere 2 Math.atan2 (hist) ‎[327 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute arc tangent with two values. == Prototype == <center>'''Math.atan2'''(''y'', ''x'')</center> == Parameters == * '''y''': The y-coordinate. * '''x''': The x-coordina...")
  • 21:09, 25 January 2012 ‎Sphere 2 Math.atan (hist) ‎[291 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute arc tangent. == Prototype == <center>'''Math.atan'''(''x'')</center> == Parameters == * '''x''': The value to compute the arc tangent from. == Return Value == Re...")
  • 21:08, 25 January 2012 ‎Sphere 2 Math.asin (hist) ‎[279 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute arc sine. == Prototype == <center>'''Math.asin'''(''x'')</center> == Parameters == * '''x''': The value to compute the arc sine from. == Return Value == Returns ...")
  • 21:08, 25 January 2012 ‎Sphere 2 Math.acos (hist) ‎[287 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute arc cosine. == Prototype == <center>'''Math.acos'''(''x'')</center> == Parameters == * '''x''': The value to compute the arc cosine from. == Return Value == Retu...")
  • 21:07, 25 January 2012 ‎Sphere 2 Math.tan (hist) ‎[273 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute tangent. == Prototype == <center>'''Math.tan'''(''x'')</center> == Parameters == * '''x''': The value to compute the tangent from. == Return Value == Returns the...")
  • 21:06, 25 January 2012 ‎Sphere 2 Math.sin (hist) ‎[261 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute sine. == Prototype == <center>'''Math.sin'''(''x'')</center> == Parameters == * '''x''': The value to compute the sine from. == Return Value == Returns the sine ...")
  • 21:05, 25 January 2012 ‎Sphere 2 Math.cos (hist) ‎[269 bytes] ‎Kyuu (Talk | contribs) (Created page with "Compute cosine. == Prototype == <center>'''Math.cos'''(''x'')</center> == Parameters == * '''x''': The value to compute the cosine from. == Return Value == Returns the c...")
  • 01:15, 24 January 2012 ‎Sphere 2 DrawCaptureQuad (hist) ‎[1,288 bytes] ‎Kyuu (Talk | contribs) (Created page with "Draw a transformed section of a previously captured frame section in the frame buffer with the specified vertices. == Prototype == <center>'''DrawCaptureQuad'''(''ox'', ''oy''...")
  • 01:08, 24 January 2012 ‎Sphere 2 DrawCapture (hist) ‎[1,180 bytes] ‎Kyuu (Talk | contribs) (Created page with "Draw a section of a previously captured frame section in the frame buffer at the specified position. == Prototype == <center>'''DrawCapture'''(''ox'', ''oy'', ''width'', ''hei...")
  • 00:55, 24 January 2012 ‎Sphere 2 CaptureFrame (hist) ‎[626 bytes] ‎Kyuu (Talk | contribs) (Created page with "Copies a section of the frame buffer to an internal texture. == Prototype == <center>'''CaptureFrame'''(''ox'', ''oy'', ''width'', ''height'')</center> == Parameters == * '...")
  • 00:36, 24 January 2012 ‎Sphere 2 SetBlendMode (hist) ‎[524 bytes] ‎Kyuu (Talk | contribs) (Created page with "Set current blend mode. == Prototype == <center>'''SetBlendMode'''(''blendMode'')</center> == Parameters == * '''blendMode''': A blend mode constant. Can be one of: ** ''BM...")
  • 00:19, 24 January 2012 ‎Sphere 2 GetBlendMode (hist) ‎[531 bytes] ‎Kyuu (Talk | contribs) (Created page with "Get current blend mode. == Prototype == <center>'''GetBlendMode'''()</center> == Parameters == None. == Return Value == Returns current blend mode. == Examples == <pr...")
(Latest | Earliest) View (newer 50) () (20 | 50 | 100 | 250 | 500).
Views
Personal tools
Toolbox