MathHelper.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  1. // MIT License - Copyright (C) The Mono.Xna Team
  2. // This file is subject to the terms and conditions defined in
  3. // file 'LICENSE.txt', which is part of this source code package.
  4. using System;
  5. namespace CommonLang.Geometry
  6. {
  7. /// <summary>
  8. /// Contains commonly used precalculated values and mathematical operations.
  9. /// </summary>
  10. public static class MathHelper
  11. {
  12. /// <summary>
  13. /// Represents the mathematical constant e(2.71828175).
  14. /// </summary>
  15. public const float E = (float)Math.E;
  16. /// <summary>
  17. /// Represents the log base ten of e(0.4342945).
  18. /// </summary>
  19. public const float Log10E = 0.4342945f;
  20. /// <summary>
  21. /// Represents the log base two of e(1.442695).
  22. /// </summary>
  23. public const float Log2E = 1.442695f;
  24. /// <summary>
  25. /// Represents the value of pi(3.14159274).
  26. /// </summary>
  27. public const float Pi = (float)Math.PI;
  28. /// <summary>
  29. /// Represents the value of pi divided by two(1.57079637).
  30. /// </summary>
  31. public const float PiOver2 = (float)(Math.PI / 2.0);
  32. /// <summary>
  33. /// Represents the value of pi divided by four(0.7853982).
  34. /// </summary>
  35. public const float PiOver4 = (float)(Math.PI / 4.0);
  36. /// <summary>
  37. /// Represents the value of pi times two(6.28318548).
  38. /// </summary>
  39. public const float TwoPi = (float)(Math.PI * 2.0);
  40. /// <summary>
  41. /// Returns the Cartesian coordinate for one axis of a point that is defined by a given triangle and two normalized barycentric (areal) coordinates.
  42. /// </summary>
  43. /// <param name="value1">The coordinate on one axis of vertex 1 of the defining triangle.</param>
  44. /// <param name="value2">The coordinate on the same axis of vertex 2 of the defining triangle.</param>
  45. /// <param name="value3">The coordinate on the same axis of vertex 3 of the defining triangle.</param>
  46. /// <param name="amount1">The normalized barycentric (areal) coordinate b2, equal to the weighting factor for vertex 2, the coordinate of which is specified in value2.</param>
  47. /// <param name="amount2">The normalized barycentric (areal) coordinate b3, equal to the weighting factor for vertex 3, the coordinate of which is specified in value3.</param>
  48. /// <returns>Cartesian coordinate of the specified point with respect to the axis being used.</returns>
  49. public static float Barycentric(float value1, float value2, float value3, float amount1, float amount2)
  50. {
  51. return value1 + (value2 - value1) * amount1 + (value3 - value1) * amount2;
  52. }
  53. /// <summary>
  54. /// Performs a Catmull-Rom interpolation using the specified positions.
  55. /// </summary>
  56. /// <param name="value1">The first position in the interpolation.</param>
  57. /// <param name="value2">The second position in the interpolation.</param>
  58. /// <param name="value3">The third position in the interpolation.</param>
  59. /// <param name="value4">The fourth position in the interpolation.</param>
  60. /// <param name="amount">Weighting factor.</param>
  61. /// <returns>A position that is the result of the Catmull-Rom interpolation.</returns>
  62. public static float CatmullRom(float value1, float value2, float value3, float value4, float amount)
  63. {
  64. // Using formula from http://www.mvps.org/directx/articles/catmull/
  65. // Internally using doubles not to lose precission
  66. double amountSquared = amount * amount;
  67. double amountCubed = amountSquared * amount;
  68. return (float)(0.5 * (2.0 * value2 +
  69. (value3 - value1) * amount +
  70. (2.0 * value1 - 5.0 * value2 + 4.0 * value3 - value4) * amountSquared +
  71. (3.0 * value2 - value1 - 3.0 * value3 + value4) * amountCubed));
  72. }
  73. /// <summary>
  74. /// Restricts a value to be within a specified range.
  75. /// </summary>
  76. /// <param name="value">The value to clamp.</param>
  77. /// <param name="min">The minimum value. If <c>value</c> is less than <c>min</c>, <c>min</c> will be returned.</param>
  78. /// <param name="max">The maximum value. If <c>value</c> is greater than <c>max</c>, <c>max</c> will be returned.</param>
  79. /// <returns>The clamped value.</returns>
  80. public static float Clamp(float value, float min, float max)
  81. {
  82. // First we check to see if we're greater than the max
  83. value = (value > max) ? max : value;
  84. // Then we check to see if we're less than the min.
  85. value = (value < min) ? min : value;
  86. // There's no check to see if min > max.
  87. return value;
  88. }
  89. /// <summary>
  90. /// Restricts a value to be within a specified range.
  91. /// </summary>
  92. /// <param name="value">The value to clamp.</param>
  93. /// <param name="min">The minimum value. If <c>value</c> is less than <c>min</c>, <c>min</c> will be returned.</param>
  94. /// <param name="max">The maximum value. If <c>value</c> is greater than <c>max</c>, <c>max</c> will be returned.</param>
  95. /// <returns>The clamped value.</returns>
  96. public static int Clamp(int value, int min, int max)
  97. {
  98. value = (value > max) ? max : value;
  99. value = (value < min) ? min : value;
  100. return value;
  101. }
  102. /// <summary>
  103. /// Calculates the absolute value of the difference of two values.
  104. /// </summary>
  105. /// <param name="value1">Source value.</param>
  106. /// <param name="value2">Source value.</param>
  107. /// <returns>Distance between the two values.</returns>
  108. public static float Distance(float value1, float value2)
  109. {
  110. return Math.Abs(value1 - value2);
  111. }
  112. /// <summary>
  113. /// Performs a Hermite spline interpolation.
  114. /// </summary>
  115. /// <param name="value1">Source position.</param>
  116. /// <param name="tangent1">Source tangent.</param>
  117. /// <param name="value2">Source position.</param>
  118. /// <param name="tangent2">Source tangent.</param>
  119. /// <param name="amount">Weighting factor.</param>
  120. /// <returns>The result of the Hermite spline interpolation.</returns>
  121. public static float Hermite(float value1, float tangent1, float value2, float tangent2, float amount)
  122. {
  123. // All transformed to double not to lose precission
  124. // Otherwise, for high numbers of param:amount the result is NaN instead of Infinity
  125. double v1 = value1, v2 = value2, t1 = tangent1, t2 = tangent2, s = amount, result;
  126. double sCubed = s * s * s;
  127. double sSquared = s * s;
  128. if (amount == 0f)
  129. result = value1;
  130. else if (amount == 1f)
  131. result = value2;
  132. else
  133. result = (2 * v1 - 2 * v2 + t2 + t1) * sCubed +
  134. (3 * v2 - 3 * v1 - 2 * t1 - t2) * sSquared +
  135. t1 * s +
  136. v1;
  137. return (float)result;
  138. }
  139. /// <summary>
  140. /// Linearly interpolates between two values.
  141. /// </summary>
  142. /// <param name="value1">Source value.</param>
  143. /// <param name="value2">Source value.</param>
  144. /// <param name="amount">Value between 0 and 1 indicating the weight of value2.</param>
  145. /// <returns>Interpolated value.</returns>
  146. /// <remarks>This method performs the linear interpolation based on the following formula.
  147. /// <c>value1 + (value2 - value1) * amount</c>
  148. /// Passing amount a value of 0 will cause value1 to be returned, a value of 1 will cause value2 to be returned.
  149. /// </remarks>
  150. public static float Lerp(float value1, float value2, float amount)
  151. {
  152. return value1 + (value2 - value1) * amount;
  153. }
  154. /// <summary>
  155. /// Returns the greater of two values.
  156. /// </summary>
  157. /// <param name="value1">Source value.</param>
  158. /// <param name="value2">Source value.</param>
  159. /// <returns>The greater value.</returns>
  160. public static float Max(float value1, float value2)
  161. {
  162. return value1 > value2 ? value1 : value2;
  163. }
  164. /// <summary>
  165. /// Returns the greater of two values.
  166. /// </summary>
  167. /// <param name="value1">Source value.</param>
  168. /// <param name="value2">Source value.</param>
  169. /// <returns>The greater value.</returns>
  170. public static int Max(int value1, int value2)
  171. {
  172. return value1 > value2 ? value1 : value2;
  173. }
  174. /// <summary>
  175. /// Returns the lesser of two values.
  176. /// </summary>
  177. /// <param name="value1">Source value.</param>
  178. /// <param name="value2">Source value.</param>
  179. /// <returns>The lesser value.</returns>
  180. public static float Min(float value1, float value2)
  181. {
  182. return value1 < value2 ? value1 : value2;
  183. }
  184. /// <summary>
  185. /// Returns the lesser of two values.
  186. /// </summary>
  187. /// <param name="value1">Source value.</param>
  188. /// <param name="value2">Source value.</param>
  189. /// <returns>The lesser value.</returns>
  190. public static int Min(int value1, int value2)
  191. {
  192. return value1 < value2 ? value1 : value2;
  193. }
  194. /// <summary>
  195. /// Interpolates between two values using a cubic equation.
  196. /// </summary>
  197. /// <param name="value1">Source value.</param>
  198. /// <param name="value2">Source value.</param>
  199. /// <param name="amount">Weighting value.</param>
  200. /// <returns>Interpolated value.</returns>
  201. public static float SmoothStep(float value1, float value2, float amount)
  202. {
  203. // It is expected that 0 < amount < 1
  204. // If amount < 0, return value1
  205. // If amount > 1, return value2
  206. float result = MathHelper.Clamp(amount, 0f, 1f);
  207. result = MathHelper.Hermite(value1, 0f, value2, 0f, result);
  208. return result;
  209. }
  210. /// <summary>
  211. /// Converts radians to degrees.
  212. /// </summary>
  213. /// <param name="radians">The angle in radians.</param>
  214. /// <returns>The angle in degrees.</returns>
  215. /// <remarks>
  216. /// This method uses double precission internally,
  217. /// though it returns single float
  218. /// Factor = 180 / pi
  219. /// </remarks>
  220. public static float ToDegrees(float radians)
  221. {
  222. return (float)(radians * 57.295779513082320876798154814105);
  223. }
  224. /// <summary>
  225. /// Converts degrees to radians.
  226. /// </summary>
  227. /// <param name="degrees">The angle in degrees.</param>
  228. /// <returns>The angle in radians.</returns>
  229. /// <remarks>
  230. /// This method uses double precission internally,
  231. /// though it returns single float
  232. /// Factor = pi / 180
  233. /// </remarks>
  234. public static float ToRadians(float degrees)
  235. {
  236. return (float)(degrees * 0.017453292519943295769236907684886);
  237. }
  238. /// <summary>
  239. /// Reduces a given angle to a value between π and -π.
  240. /// </summary>
  241. /// <param name="angle">The angle to reduce, in radians.</param>
  242. /// <returns>The new angle, in radians.</returns>
  243. public static float WrapAngle(float angle)
  244. {
  245. angle = (float)Math.IEEERemainder((double)angle, 6.2831854820251465);
  246. if (angle <= -3.14159274f)
  247. {
  248. angle += 6.28318548f;
  249. }
  250. else
  251. {
  252. if (angle > 3.14159274f)
  253. {
  254. angle -= 6.28318548f;
  255. }
  256. }
  257. return angle;
  258. }
  259. /// <summary>
  260. /// Determines if value is powered by two.
  261. /// </summary>
  262. /// <param name="value">A value.</param>
  263. /// <returns><c>true</c> if <c>value</c> is powered by two; otherwise <c>false</c>.</returns>
  264. public static bool IsPowerOfTwo(int value)
  265. {
  266. return (value > 0) && ((value & (value - 1)) == 0);
  267. }
  268. }
  269. }