Math.hx 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320
  1. package;
  2. import python.lib.Builtin;
  3. /*
  4. * Copyright (C)2005-2012 Haxe Foundation
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a
  7. * copy of this software and associated documentation files (the "Software"),
  8. * to deal in the Software without restriction, including without limitation
  9. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  10. * and/or sell copies of the Software, and to permit persons to whom the
  11. * Software is furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  21. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  22. * DEALINGS IN THE SOFTWARE.
  23. */
  24. /**
  25. This class defines mathematical functions and constants.
  26. **/
  27. @:native("_hx_math")
  28. @:import("math")
  29. @:coreApi
  30. extern class Math
  31. {
  32. static var PI(default,null) : Float;
  33. /**
  34. A special Float constant which denotes negative infinity.
  35. For example, this is the result of -1.0 / 0.0.
  36. Operations with NEGATIVE_INFINITY as an operand may result in
  37. Operations with NEGATIVE_INFINITY as an operand may result in
  38. NEGATIVE_INFINITY, POSITIVE_INFINITY or NaN. For detailed information,
  39. see ...
  40. If this constant is converted to an Int, e.g. through Std.int(), the
  41. result is unspecified.
  42. **/
  43. static var NEGATIVE_INFINITY(default, null) : Float;
  44. /**
  45. A special Float constant which denotes negative infinity.
  46. For example, this is the result of 1.0 / 0.0.
  47. Operations with POSITIVE_INFINITY as an operand may result in
  48. NEGATIVE_INFINITY, POSITIVE_INFINITY or NaN. For detailed information,
  49. see ...
  50. If this constant is converted to an Int, e.g. through Std.int(), the
  51. result is unspecified.
  52. **/
  53. static var POSITIVE_INFINITY(default,null) : Float;
  54. /**
  55. A special Float constant which denotes an invalid number.
  56. NaN stands for "Not a Number". It occurs when a mathematically incorrect
  57. operation is executed, such as taking the square root of a negative
  58. number: Math.sqrt(-1).
  59. All further operations with NaN as an operand will result in NaN.
  60. If this constant is converted to an Int, e.g. through Std.int(), the
  61. result is unspecified.
  62. In order to test if a value is NaN, you should use Math.isNaN() function.
  63. (Php) In PHP versions prior to 5.3.1 VC 9 there may be unexpected
  64. results when performing arithmetic operations with NaN on Windows, see:
  65. https://bugs.php.net/bug.php?id=42143
  66. **/
  67. static var NaN(default, null) : Float;
  68. /**
  69. Returns the absolute value of `v`.
  70. If `v` is positive or 0, the result is unchanged. Otherwise the result
  71. is -`v`.
  72. If `v` is NEGATIVE_INFINITY or POSITIVE_INFINITY, the result is
  73. POSITIVE_INFINITY.
  74. If `v` is NaN, the result is NaN.
  75. **/
  76. public static inline function abs(v:Float):Float
  77. {
  78. return (Math:Dynamic).fabs(v);
  79. }
  80. /**
  81. Returns the smaller of values `a` and `b`.
  82. If `a` or `b` are NaN, the result is NaN.
  83. If `a` or `b` are NEGATIVE_INFINITY, the result is NEGATIVE_INFINITY.
  84. If `a` and `b` are POSITIVE_INFINITY, the result is POSITIVE_INFINITY.
  85. **/
  86. public static inline function min(a:Float, b:Float):Float {
  87. return if (isNaN(a)) a else if (isNaN(b)) b else Builtin.min(a,b);
  88. }
  89. /**
  90. Returns the greater of values `a` and `b`.
  91. If `a` or `b` are NaN, the result is NaN.
  92. If `a` or `b` are POSITIVE_INFINITY, the result is POSITIVE_INFINITY.
  93. If `a` and `b` are NEGATIVE_INFINITY, the result is NEGATIVE_INFINITY.
  94. **/
  95. public static inline function max(a:Float, b:Float):Float
  96. {
  97. return if (isNaN(a)) a else if (isNaN(b)) b else Builtin.max(a,b);
  98. }
  99. /**
  100. Returns the trigonometric sine of `v`.
  101. The unit of `v` is radians.
  102. If `v` is NaN or infinite, the result is NaN.
  103. **/
  104. public static inline function sin(v:Float):Float {
  105. return if (v == POSITIVE_INFINITY || v == NEGATIVE_INFINITY) NaN else python.lib.Math.sin(v);
  106. }
  107. /**
  108. Returns the trigonometric cosine of `v`.
  109. The unit of `v` is radians.
  110. If `v` is NaN or infinite, the result is NaN.
  111. **/
  112. public static inline function cos(v:Float):Float {
  113. return if (v == POSITIVE_INFINITY || v == NEGATIVE_INFINITY) NaN else python.lib.Math.cos(v);
  114. }
  115. static function tan(v:Float):Float {
  116. return if (v == POSITIVE_INFINITY || v == NEGATIVE_INFINITY) NaN else python.lib.Math.tan(v);
  117. }
  118. static function asin(v:Float):Float {
  119. return if (v == POSITIVE_INFINITY || v == NEGATIVE_INFINITY) NaN else python.lib.Math.asin(v);
  120. }
  121. static function acos(v:Float):Float {
  122. return if (v == POSITIVE_INFINITY || v == NEGATIVE_INFINITY) NaN else python.lib.Math.acos(v);
  123. }
  124. static function atan(v:Float):Float {
  125. return if (v == POSITIVE_INFINITY || v == NEGATIVE_INFINITY) NaN else python.lib.Math.atan(v);
  126. }
  127. static function atan2(y:Float, x:Float):Float {
  128. return if (v == POSITIVE_INFINITY || v == NEGATIVE_INFINITY) NaN else python.lib.Math.atan2(v);
  129. }
  130. /**
  131. Returns Euler's number, raised to the power of `v`.
  132. exp(1.0) is approximately 2.718281828459.
  133. If `v` is POSITIVE_INFINITY, the result is POSITIVE_INFINITY.
  134. If `v` is NEGATIVE_INFINITY, the result is 0.0.
  135. If `v` is NaN, the result is NaN.
  136. **/
  137. public static inline function exp(v:Float):Float
  138. {
  139. if (v == NEGATIVE_INFINITY) {
  140. return 0.0;
  141. } else if (v == POSITIVE_INFINITY) {
  142. return POSITIVE_INFINITY;
  143. } else {
  144. return (Math:Dynamic).exp(v);
  145. }
  146. }
  147. /**
  148. Returns the natural logarithm of `v`.
  149. If `v` is negative (including NEGATIVE_INFINITY) or NaN, the result is
  150. NaN.
  151. If `v` is POSITIVE_INFINITY, the result is POSITIVE_INFINITY.
  152. If `v` is 0.0, the result is NEGATIVE_INFINITY.
  153. This is the inverse operation of exp, i.e. log(exp(v)) == v always
  154. holds.
  155. **/
  156. public static inline function log(v:Float):Float {
  157. return if (v == 0.0) NEGATIVE_INFINITY else if (v < 0.0) NaN else python.lib.Math.log(v);
  158. }
  159. // TODO
  160. // http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Math.html#pow(double, double) <-- wtf?
  161. static function pow(v:Float, exp:Float):Float;
  162. /**
  163. Returns the square root of `v`.
  164. If `v` is negative (including NEGATIVE_INFINITY) or NaN, the result is
  165. NaN.
  166. If `v` is POSITIVE_INFINITY, the result is POSITIVE_INFINITY.
  167. If `v` is 0.0, the result is 0.0.
  168. **/
  169. public static inline function sqrt(v:Float):Float
  170. {
  171. return if (v < 0) NaN else python.lib.Math.sqrt(v);
  172. }
  173. /**
  174. Rounds `v` to the nearest Int value.
  175. If v is outside of the signed Int32 range, or is NaN, NEGATIVE_INFINITY or POSITIVE_INFINITY, the result is unspecified.
  176. TODO: need spec
  177. **/
  178. public static inline function round(v:Float):Int {
  179. return Math.floor(v + 0.5);
  180. }
  181. /**
  182. Returns the largest Int value that is not greater than `v`.
  183. If v is outside of the signed Int32 range, or is NaN, NEGATIVE_INFINITY or POSITIVE_INFINITY, the result is unspecified.
  184. TODO: need spec
  185. **/
  186. static function floor(v:Float):Int;
  187. /**
  188. Returns the smallest Int value that is not less than `v`.
  189. If v is outside of the signed Int32 range, or is NaN, NEGATIVE_INFINITY or POSITIVE_INFINITY, the result is unspecified.
  190. TODO: need spec
  191. **/
  192. static function ceil(v:Float):Int;
  193. /**
  194. Returns a pseudo-random number which is greater than or equal to 0.0,
  195. and less than 1.0.
  196. **/
  197. inline static function random() : Float {
  198. return python.lib.Random.random();
  199. }
  200. static inline function ffloor( v : Float ) : Float
  201. {
  202. if (v == POSITIVE_INFINITY || v == NEGATIVE_INFINITY) return v;
  203. if (isNaN(v)) return NaN;
  204. return floor(v);
  205. }
  206. static inline function fceil( v : Float ) : Float
  207. {
  208. if (v == POSITIVE_INFINITY || v == NEGATIVE_INFINITY) return v;
  209. if (isNaN(v)) return NaN;
  210. return ceil(v);
  211. }
  212. static inline function fround( v : Float ) : Float
  213. {
  214. if (v == POSITIVE_INFINITY || v == NEGATIVE_INFINITY) return v;
  215. if (isNaN(v)) return NaN;
  216. return round(v);
  217. }
  218. /**
  219. Tells if `f` is a finite number.
  220. If `f` is POSITIVE_INFINITY, NEGATIVE_INFINITY or NaN, the result is
  221. false.
  222. Otherwise the result is true.
  223. **/
  224. static inline function isFinite( f : Float ) : Bool return f != POSITIVE_INFINITY && f != NEGATIVE_INFINITY && !isNaN(f);
  225. /**
  226. Tells if `f` is not a valid number.
  227. If `f` is NaN, the result is true.
  228. Otherwise the result is false. In particular, both POSITIVE_INFINITY and
  229. NEGATIVE_INFINITY are not considered NaN.
  230. **/
  231. static inline function isNaN( f : Float ) : Bool {
  232. return python.lib.Math.isnan(f);
  233. }
  234. static function __init__():Void {
  235. NEGATIVE_INFINITY = Builtin.float('-inf');
  236. POSITIVE_INFINITY = Builtin.float('inf');
  237. NaN = Builtin.float("nan");
  238. PI = python.lib.Math.pi;
  239. }
  240. }