Vector2.cs 50 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105
  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. using System.Diagnostics;
  6. namespace CommonLang.Geometry
  7. {
  8. public struct Vector2 : IEquatable<Vector2>
  9. {
  10. #region Private Fields
  11. private static readonly Vector2 zeroVector = new Vector2(0f, 0f);
  12. private static readonly Vector2 unitVector = new Vector2(1f, 1f);
  13. private static readonly Vector2 unitXVector = new Vector2(1f, 0f);
  14. private static readonly Vector2 unitYVector = new Vector2(0f, 1f);
  15. #endregion
  16. #region Public Fields
  17. /// <summary>
  18. /// The x coordinate of this <see cref="Vector2"/>.
  19. /// </summary>
  20. public float X;
  21. /// <summary>
  22. /// The y coordinate of this <see cref="Vector2"/>.
  23. /// </summary>
  24. public float Y;
  25. #endregion
  26. #region Properties
  27. /// <summary>
  28. /// Returns a <see cref="Vector2"/> with components 0, 0.
  29. /// </summary>
  30. public static Vector2 Zero
  31. {
  32. get { return zeroVector; }
  33. }
  34. /// <summary>
  35. /// Returns a <see cref="Vector2"/> with components 1, 1.
  36. /// </summary>
  37. public static Vector2 One
  38. {
  39. get { return unitVector; }
  40. }
  41. /// <summary>
  42. /// Returns a <see cref="Vector2"/> with components 1, 0.
  43. /// </summary>
  44. public static Vector2 UnitX
  45. {
  46. get { return unitXVector; }
  47. }
  48. /// <summary>
  49. /// Returns a <see cref="Vector2"/> with components 0, 1.
  50. /// </summary>
  51. public static Vector2 UnitY
  52. {
  53. get { return unitYVector; }
  54. }
  55. #endregion
  56. #region Internal Properties
  57. internal string DebugDisplayString
  58. {
  59. get
  60. {
  61. return string.Concat(
  62. this.X.ToString(), " ",
  63. this.Y.ToString()
  64. );
  65. }
  66. }
  67. #endregion
  68. #region Constructors
  69. /// <summary>
  70. /// Constructs a 2d vector with X and Y from two values.
  71. /// </summary>
  72. /// <param name="x">The x coordinate in 2d-space.</param>
  73. /// <param name="y">The y coordinate in 2d-space.</param>
  74. public Vector2(float x, float y)
  75. {
  76. this.X = x;
  77. this.Y = y;
  78. }
  79. /// <summary>
  80. /// Constructs a 2d vector with X and Y set to the same value.
  81. /// </summary>
  82. /// <param name="value">The x and y coordinates in 2d-space.</param>
  83. public Vector2(float value)
  84. {
  85. this.X = value;
  86. this.Y = value;
  87. }
  88. #endregion
  89. #region Operators
  90. /// <summary>
  91. /// Inverts values in the specified <see cref="Vector2"/>.
  92. /// </summary>
  93. /// <param name="value">Source <see cref="Vector2"/> on the right of the sub sign.</param>
  94. /// <returns>Result of the inversion.</returns>
  95. public static Vector2 operator -(Vector2 value)
  96. {
  97. value.X = -value.X;
  98. value.Y = -value.Y;
  99. return value;
  100. }
  101. /// <summary>
  102. /// Adds two vectors.
  103. /// </summary>
  104. /// <param name="value1">Source <see cref="Vector2"/> on the left of the add sign.</param>
  105. /// <param name="value2">Source <see cref="Vector2"/> on the right of the add sign.</param>
  106. /// <returns>Sum of the vectors.</returns>
  107. public static Vector2 operator +(Vector2 value1, Vector2 value2)
  108. {
  109. value1.X += value2.X;
  110. value1.Y += value2.Y;
  111. return value1;
  112. }
  113. /// <summary>
  114. /// Subtracts a <see cref="Vector2"/> from a <see cref="Vector2"/>.
  115. /// </summary>
  116. /// <param name="value1">Source <see cref="Vector2"/> on the left of the sub sign.</param>
  117. /// <param name="value2">Source <see cref="Vector2"/> on the right of the sub sign.</param>
  118. /// <returns>Result of the vector subtraction.</returns>
  119. public static Vector2 operator -(Vector2 value1, Vector2 value2)
  120. {
  121. value1.X -= value2.X;
  122. value1.Y -= value2.Y;
  123. return value1;
  124. }
  125. /// <summary>
  126. /// Multiplies the components of two vectors by each other.
  127. /// </summary>
  128. /// <param name="value1">Source <see cref="Vector2"/> on the left of the mul sign.</param>
  129. /// <param name="value2">Source <see cref="Vector2"/> on the right of the mul sign.</param>
  130. /// <returns>Result of the vector multiplication.</returns>
  131. public static Vector2 operator *(Vector2 value1, Vector2 value2)
  132. {
  133. value1.X *= value2.X;
  134. value1.Y *= value2.Y;
  135. return value1;
  136. }
  137. /// <summary>
  138. /// Multiplies the components of vector by a scalar.
  139. /// </summary>
  140. /// <param name="value">Source <see cref="Vector2"/> on the left of the mul sign.</param>
  141. /// <param name="scaleFactor">Scalar value on the right of the mul sign.</param>
  142. /// <returns>Result of the vector multiplication with a scalar.</returns>
  143. public static Vector2 operator *(Vector2 value, float scaleFactor)
  144. {
  145. value.X *= scaleFactor;
  146. value.Y *= scaleFactor;
  147. return value;
  148. }
  149. /// <summary>
  150. /// Multiplies the components of vector by a scalar.
  151. /// </summary>
  152. /// <param name="scaleFactor">Scalar value on the left of the mul sign.</param>
  153. /// <param name="value">Source <see cref="Vector2"/> on the right of the mul sign.</param>
  154. /// <returns>Result of the vector multiplication with a scalar.</returns>
  155. public static Vector2 operator *(float scaleFactor, Vector2 value)
  156. {
  157. value.X *= scaleFactor;
  158. value.Y *= scaleFactor;
  159. return value;
  160. }
  161. /// <summary>
  162. /// Divides the components of a <see cref="Vector2"/> by the components of another <see cref="Vector2"/>.
  163. /// </summary>
  164. /// <param name="value1">Source <see cref="Vector2"/> on the left of the div sign.</param>
  165. /// <param name="value2">Divisor <see cref="Vector2"/> on the right of the div sign.</param>
  166. /// <returns>The result of dividing the vectors.</returns>
  167. public static Vector2 operator /(Vector2 value1, Vector2 value2)
  168. {
  169. value1.X /= value2.X;
  170. value1.Y /= value2.Y;
  171. return value1;
  172. }
  173. /// <summary>
  174. /// Divides the components of a <see cref="Vector2"/> by a scalar.
  175. /// </summary>
  176. /// <param name="value1">Source <see cref="Vector2"/> on the left of the div sign.</param>
  177. /// <param name="divider">Divisor scalar on the right of the div sign.</param>
  178. /// <returns>The result of dividing a vector by a scalar.</returns>
  179. public static Vector2 operator /(Vector2 value1, float divider)
  180. {
  181. float factor = 1 / divider;
  182. value1.X *= factor;
  183. value1.Y *= factor;
  184. return value1;
  185. }
  186. /// <summary>
  187. /// Compares whether two <see cref="Vector2"/> instances are equal.
  188. /// </summary>
  189. /// <param name="value1"><see cref="Vector2"/> instance on the left of the equal sign.</param>
  190. /// <param name="value2"><see cref="Vector2"/> instance on the right of the equal sign.</param>
  191. /// <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  192. public static bool operator ==(Vector2 value1, Vector2 value2)
  193. {
  194. return value1.X == value2.X && value1.Y == value2.Y;
  195. }
  196. /// <summary>
  197. /// Compares whether two <see cref="Vector2"/> instances are not equal.
  198. /// </summary>
  199. /// <param name="value1"><see cref="Vector2"/> instance on the left of the not equal sign.</param>
  200. /// <param name="value2"><see cref="Vector2"/> instance on the right of the not equal sign.</param>
  201. /// <returns><c>true</c> if the instances are not equal; <c>false</c> otherwise.</returns>
  202. public static bool operator !=(Vector2 value1, Vector2 value2)
  203. {
  204. return value1.X != value2.X || value1.Y != value2.Y;
  205. }
  206. #endregion
  207. #region Public Methods
  208. /// <summary>
  209. /// Performs vector addition on <paramref name="value1"/> and <paramref name="value2"/>.
  210. /// </summary>
  211. /// <param name="value1">The first vector to add.</param>
  212. /// <param name="value2">The second vector to add.</param>
  213. /// <returns>The result of the vector addition.</returns>
  214. public static Vector2 Add(Vector2 value1, Vector2 value2)
  215. {
  216. value1.X += value2.X;
  217. value1.Y += value2.Y;
  218. return value1;
  219. }
  220. /// <summary>
  221. /// Performs vector addition on <paramref name="value1"/> and
  222. /// <paramref name="value2"/>, storing the result of the
  223. /// addition in <paramref name="result"/>.
  224. /// </summary>
  225. /// <param name="value1">The first vector to add.</param>
  226. /// <param name="value2">The second vector to add.</param>
  227. /// <param name="result">The result of the vector addition.</param>
  228. public static void Add(ref Vector2 value1, ref Vector2 value2, out Vector2 result)
  229. {
  230. result.X = value1.X + value2.X;
  231. result.Y = value1.Y + value2.Y;
  232. }
  233. /// <summary>
  234. /// Creates a new <see cref="Vector2"/> that contains the cartesian coordinates of a vector specified in barycentric coordinates and relative to 2d-triangle.
  235. /// </summary>
  236. /// <param name="value1">The first vector of 2d-triangle.</param>
  237. /// <param name="value2">The second vector of 2d-triangle.</param>
  238. /// <param name="value3">The third vector of 2d-triangle.</param>
  239. /// <param name="amount1">Barycentric scalar <c>b2</c> which represents a weighting factor towards second vector of 2d-triangle.</param>
  240. /// <param name="amount2">Barycentric scalar <c>b3</c> which represents a weighting factor towards third vector of 2d-triangle.</param>
  241. /// <returns>The cartesian translation of barycentric coordinates.</returns>
  242. public static Vector2 Barycentric(Vector2 value1, Vector2 value2, Vector2 value3, float amount1, float amount2)
  243. {
  244. return new Vector2(
  245. MathHelper.Barycentric(value1.X, value2.X, value3.X, amount1, amount2),
  246. MathHelper.Barycentric(value1.Y, value2.Y, value3.Y, amount1, amount2));
  247. }
  248. /// <summary>
  249. /// Creates a new <see cref="Vector2"/> that contains the cartesian coordinates of a vector specified in barycentric coordinates and relative to 2d-triangle.
  250. /// </summary>
  251. /// <param name="value1">The first vector of 2d-triangle.</param>
  252. /// <param name="value2">The second vector of 2d-triangle.</param>
  253. /// <param name="value3">The third vector of 2d-triangle.</param>
  254. /// <param name="amount1">Barycentric scalar <c>b2</c> which represents a weighting factor towards second vector of 2d-triangle.</param>
  255. /// <param name="amount2">Barycentric scalar <c>b3</c> which represents a weighting factor towards third vector of 2d-triangle.</param>
  256. /// <param name="result">The cartesian translation of barycentric coordinates as an output parameter.</param>
  257. public static void Barycentric(ref Vector2 value1, ref Vector2 value2, ref Vector2 value3, float amount1, float amount2, out Vector2 result)
  258. {
  259. result.X = MathHelper.Barycentric(value1.X, value2.X, value3.X, amount1, amount2);
  260. result.Y = MathHelper.Barycentric(value1.Y, value2.Y, value3.Y, amount1, amount2);
  261. }
  262. /// <summary>
  263. /// Creates a new <see cref="Vector2"/> that contains CatmullRom interpolation of the specified vectors.
  264. /// </summary>
  265. /// <param name="value1">The first vector in interpolation.</param>
  266. /// <param name="value2">The second vector in interpolation.</param>
  267. /// <param name="value3">The third vector in interpolation.</param>
  268. /// <param name="value4">The fourth vector in interpolation.</param>
  269. /// <param name="amount">Weighting factor.</param>
  270. /// <returns>The result of CatmullRom interpolation.</returns>
  271. public static Vector2 CatmullRom(Vector2 value1, Vector2 value2, Vector2 value3, Vector2 value4, float amount)
  272. {
  273. return new Vector2(
  274. MathHelper.CatmullRom(value1.X, value2.X, value3.X, value4.X, amount),
  275. MathHelper.CatmullRom(value1.Y, value2.Y, value3.Y, value4.Y, amount));
  276. }
  277. /// <summary>
  278. /// Creates a new <see cref="Vector2"/> that contains CatmullRom interpolation of the specified vectors.
  279. /// </summary>
  280. /// <param name="value1">The first vector in interpolation.</param>
  281. /// <param name="value2">The second vector in interpolation.</param>
  282. /// <param name="value3">The third vector in interpolation.</param>
  283. /// <param name="value4">The fourth vector in interpolation.</param>
  284. /// <param name="amount">Weighting factor.</param>
  285. /// <param name="result">The result of CatmullRom interpolation as an output parameter.</param>
  286. public static void CatmullRom(ref Vector2 value1, ref Vector2 value2, ref Vector2 value3, ref Vector2 value4, float amount, out Vector2 result)
  287. {
  288. result.X = MathHelper.CatmullRom(value1.X, value2.X, value3.X, value4.X, amount);
  289. result.Y = MathHelper.CatmullRom(value1.Y, value2.Y, value3.Y, value4.Y, amount);
  290. }
  291. /// <summary>
  292. /// Clamps the specified value within a range.
  293. /// </summary>
  294. /// <param name="value1">The value to clamp.</param>
  295. /// <param name="min">The min value.</param>
  296. /// <param name="max">The max value.</param>
  297. /// <returns>The clamped value.</returns>
  298. public static Vector2 Clamp(Vector2 value1, Vector2 min, Vector2 max)
  299. {
  300. return new Vector2(
  301. MathHelper.Clamp(value1.X, min.X, max.X),
  302. MathHelper.Clamp(value1.Y, min.Y, max.Y));
  303. }
  304. /// <summary>
  305. /// Clamps the specified value within a range.
  306. /// </summary>
  307. /// <param name="value1">The value to clamp.</param>
  308. /// <param name="min">The min value.</param>
  309. /// <param name="max">The max value.</param>
  310. /// <param name="result">The clamped value as an output parameter.</param>
  311. public static void Clamp(ref Vector2 value1, ref Vector2 min, ref Vector2 max, out Vector2 result)
  312. {
  313. result.X = MathHelper.Clamp(value1.X, min.X, max.X);
  314. result.Y = MathHelper.Clamp(value1.Y, min.Y, max.Y);
  315. }
  316. /// <summary>
  317. /// Returns the distance between two vectors.
  318. /// </summary>
  319. /// <param name="value1">The first vector.</param>
  320. /// <param name="value2">The second vector.</param>
  321. /// <returns>The distance between two vectors.</returns>
  322. public static float Distance(Vector2 value1, Vector2 value2)
  323. {
  324. float v1 = value1.X - value2.X, v2 = value1.Y - value2.Y;
  325. return (float)Math.Sqrt((v1 * v1) + (v2 * v2));
  326. }
  327. /// <summary>
  328. /// Returns the distance between two vectors.
  329. /// </summary>
  330. /// <param name="value1">The first vector.</param>
  331. /// <param name="value2">The second vector.</param>
  332. /// <param name="result">The distance between two vectors as an output parameter.</param>
  333. public static void Distance(ref Vector2 value1, ref Vector2 value2, out float result)
  334. {
  335. float v1 = value1.X - value2.X, v2 = value1.Y - value2.Y;
  336. result = (float)Math.Sqrt((v1 * v1) + (v2 * v2));
  337. }
  338. /// <summary>
  339. /// Returns the squared distance between two vectors.
  340. /// </summary>
  341. /// <param name="value1">The first vector.</param>
  342. /// <param name="value2">The second vector.</param>
  343. /// <returns>The squared distance between two vectors.</returns>
  344. public static float DistanceSquared(Vector2 value1, Vector2 value2)
  345. {
  346. float v1 = value1.X - value2.X, v2 = value1.Y - value2.Y;
  347. return (v1 * v1) + (v2 * v2);
  348. }
  349. /// <summary>
  350. /// Returns the squared distance between two vectors.
  351. /// </summary>
  352. /// <param name="value1">The first vector.</param>
  353. /// <param name="value2">The second vector.</param>
  354. /// <param name="result">The squared distance between two vectors as an output parameter.</param>
  355. public static void DistanceSquared(ref Vector2 value1, ref Vector2 value2, out float result)
  356. {
  357. float v1 = value1.X - value2.X, v2 = value1.Y - value2.Y;
  358. result = (v1 * v1) + (v2 * v2);
  359. }
  360. /// <summary>
  361. /// Divides the components of a <see cref="Vector2"/> by the components of another <see cref="Vector2"/>.
  362. /// </summary>
  363. /// <param name="value1">Source <see cref="Vector2"/>.</param>
  364. /// <param name="value2">Divisor <see cref="Vector2"/>.</param>
  365. /// <returns>The result of dividing the vectors.</returns>
  366. public static Vector2 Divide(Vector2 value1, Vector2 value2)
  367. {
  368. value1.X /= value2.X;
  369. value1.Y /= value2.Y;
  370. return value1;
  371. }
  372. /// <summary>
  373. /// Divides the components of a <see cref="Vector2"/> by the components of another <see cref="Vector2"/>.
  374. /// </summary>
  375. /// <param name="value1">Source <see cref="Vector2"/>.</param>
  376. /// <param name="value2">Divisor <see cref="Vector2"/>.</param>
  377. /// <param name="result">The result of dividing the vectors as an output parameter.</param>
  378. public static void Divide(ref Vector2 value1, ref Vector2 value2, out Vector2 result)
  379. {
  380. result.X = value1.X / value2.X;
  381. result.Y = value1.Y / value2.Y;
  382. }
  383. /// <summary>
  384. /// Divides the components of a <see cref="Vector2"/> by a scalar.
  385. /// </summary>
  386. /// <param name="value1">Source <see cref="Vector2"/>.</param>
  387. /// <param name="divider">Divisor scalar.</param>
  388. /// <returns>The result of dividing a vector by a scalar.</returns>
  389. public static Vector2 Divide(Vector2 value1, float divider)
  390. {
  391. float factor = 1 / divider;
  392. value1.X *= factor;
  393. value1.Y *= factor;
  394. return value1;
  395. }
  396. /// <summary>
  397. /// Divides the components of a <see cref="Vector2"/> by a scalar.
  398. /// </summary>
  399. /// <param name="value1">Source <see cref="Vector2"/>.</param>
  400. /// <param name="divider">Divisor scalar.</param>
  401. /// <param name="result">The result of dividing a vector by a scalar as an output parameter.</param>
  402. public static void Divide(ref Vector2 value1, float divider, out Vector2 result)
  403. {
  404. float factor = 1 / divider;
  405. result.X = value1.X * factor;
  406. result.Y = value1.Y * factor;
  407. }
  408. /// <summary>
  409. /// Returns a dot product of two vectors.
  410. /// </summary>
  411. /// <param name="value1">The first vector.</param>
  412. /// <param name="value2">The second vector.</param>
  413. /// <returns>The dot product of two vectors.</returns>
  414. public static float Dot(Vector2 value1, Vector2 value2)
  415. {
  416. return (value1.X * value2.X) + (value1.Y * value2.Y);
  417. }
  418. /// <summary>
  419. /// Returns a dot product of two vectors.
  420. /// </summary>
  421. /// <param name="value1">The first vector.</param>
  422. /// <param name="value2">The second vector.</param>
  423. /// <param name="result">The dot product of two vectors as an output parameter.</param>
  424. public static void Dot(ref Vector2 value1, ref Vector2 value2, out float result)
  425. {
  426. result = (value1.X * value2.X) + (value1.Y * value2.Y);
  427. }
  428. /// <summary>
  429. /// Compares whether current instance is equal to specified <see cref="Object"/>.
  430. /// </summary>
  431. /// <param name="obj">The <see cref="Object"/> to compare.</param>
  432. /// <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  433. public override bool Equals(object obj)
  434. {
  435. if (obj is Vector2)
  436. {
  437. return Equals((Vector2)obj);
  438. }
  439. return false;
  440. }
  441. /// <summary>
  442. /// Compares whether current instance is equal to specified <see cref="Vector2"/>.
  443. /// </summary>
  444. /// <param name="other">The <see cref="Vector2"/> to compare.</param>
  445. /// <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  446. public bool Equals(Vector2 other)
  447. {
  448. return (X == other.X) && (Y == other.Y);
  449. }
  450. /// <summary>
  451. /// Gets the hash code of this <see cref="Vector2"/>.
  452. /// </summary>
  453. /// <returns>Hash code of this <see cref="Vector2"/>.</returns>
  454. public override int GetHashCode()
  455. {
  456. return X.GetHashCode() + Y.GetHashCode();
  457. }
  458. /// <summary>
  459. /// Creates a new <see cref="Vector2"/> that contains hermite spline interpolation.
  460. /// </summary>
  461. /// <param name="value1">The first position vector.</param>
  462. /// <param name="tangent1">The first tangent vector.</param>
  463. /// <param name="value2">The second position vector.</param>
  464. /// <param name="tangent2">The second tangent vector.</param>
  465. /// <param name="amount">Weighting factor.</param>
  466. /// <returns>The hermite spline interpolation vector.</returns>
  467. public static Vector2 Hermite(Vector2 value1, Vector2 tangent1, Vector2 value2, Vector2 tangent2, float amount)
  468. {
  469. return new Vector2(MathHelper.Hermite(value1.X, tangent1.X, value2.X, tangent2.X, amount), MathHelper.Hermite(value1.Y, tangent1.Y, value2.Y, tangent2.Y, amount));
  470. }
  471. /// <summary>
  472. /// Creates a new <see cref="Vector2"/> that contains hermite spline interpolation.
  473. /// </summary>
  474. /// <param name="value1">The first position vector.</param>
  475. /// <param name="tangent1">The first tangent vector.</param>
  476. /// <param name="value2">The second position vector.</param>
  477. /// <param name="tangent2">The second tangent vector.</param>
  478. /// <param name="amount">Weighting factor.</param>
  479. /// <param name="result">The hermite spline interpolation vector as an output parameter.</param>
  480. public static void Hermite(ref Vector2 value1, ref Vector2 tangent1, ref Vector2 value2, ref Vector2 tangent2, float amount, out Vector2 result)
  481. {
  482. result.X = MathHelper.Hermite(value1.X, tangent1.X, value2.X, tangent2.X, amount);
  483. result.Y = MathHelper.Hermite(value1.Y, tangent1.Y, value2.Y, tangent2.Y, amount);
  484. }
  485. /// <summary>
  486. /// Returns the length of this <see cref="Vector2"/>.
  487. /// </summary>
  488. /// <returns>The length of this <see cref="Vector2"/>.</returns>
  489. public float Length()
  490. {
  491. return (float)Math.Sqrt((X * X) + (Y * Y));
  492. }
  493. /// <summary>
  494. /// Returns the squared length of this <see cref="Vector2"/>.
  495. /// </summary>
  496. /// <returns>The squared length of this <see cref="Vector2"/>.</returns>
  497. public float LengthSquared()
  498. {
  499. return (X * X) + (Y * Y);
  500. }
  501. /// <summary>
  502. /// Creates a new <see cref="Vector2"/> that contains linear interpolation of the specified vectors.
  503. /// </summary>
  504. /// <param name="value1">The first vector.</param>
  505. /// <param name="value2">The second vector.</param>
  506. /// <param name="amount">Weighting value(between 0.0 and 1.0).</param>
  507. /// <returns>The result of linear interpolation of the specified vectors.</returns>
  508. public static Vector2 Lerp(Vector2 value1, Vector2 value2, float amount)
  509. {
  510. return new Vector2(
  511. MathHelper.Lerp(value1.X, value2.X, amount),
  512. MathHelper.Lerp(value1.Y, value2.Y, amount));
  513. }
  514. /// <summary>
  515. /// Creates a new <see cref="Vector2"/> that contains linear interpolation of the specified vectors.
  516. /// </summary>
  517. /// <param name="value1">The first vector.</param>
  518. /// <param name="value2">The second vector.</param>
  519. /// <param name="amount">Weighting value(between 0.0 and 1.0).</param>
  520. /// <param name="result">The result of linear interpolation of the specified vectors as an output parameter.</param>
  521. public static void Lerp(ref Vector2 value1, ref Vector2 value2, float amount, out Vector2 result)
  522. {
  523. result.X = MathHelper.Lerp(value1.X, value2.X, amount);
  524. result.Y = MathHelper.Lerp(value1.Y, value2.Y, amount);
  525. }
  526. /// <summary>
  527. /// Creates a new <see cref="Vector2"/> that contains a maximal values from the two vectors.
  528. /// </summary>
  529. /// <param name="value1">The first vector.</param>
  530. /// <param name="value2">The second vector.</param>
  531. /// <returns>The <see cref="Vector2"/> with maximal values from the two vectors.</returns>
  532. public static Vector2 Max(Vector2 value1, Vector2 value2)
  533. {
  534. return new Vector2(value1.X > value2.X ? value1.X : value2.X,
  535. value1.Y > value2.Y ? value1.Y : value2.Y);
  536. }
  537. /// <summary>
  538. /// Creates a new <see cref="Vector2"/> that contains a maximal values from the two vectors.
  539. /// </summary>
  540. /// <param name="value1">The first vector.</param>
  541. /// <param name="value2">The second vector.</param>
  542. /// <param name="result">The <see cref="Vector2"/> with maximal values from the two vectors as an output parameter.</param>
  543. public static void Max(ref Vector2 value1, ref Vector2 value2, out Vector2 result)
  544. {
  545. result.X = value1.X > value2.X ? value1.X : value2.X;
  546. result.Y = value1.Y > value2.Y ? value1.Y : value2.Y;
  547. }
  548. /// <summary>
  549. /// Creates a new <see cref="Vector2"/> that contains a minimal values from the two vectors.
  550. /// </summary>
  551. /// <param name="value1">The first vector.</param>
  552. /// <param name="value2">The second vector.</param>
  553. /// <returns>The <see cref="Vector2"/> with minimal values from the two vectors.</returns>
  554. public static Vector2 Min(Vector2 value1, Vector2 value2)
  555. {
  556. return new Vector2(value1.X < value2.X ? value1.X : value2.X,
  557. value1.Y < value2.Y ? value1.Y : value2.Y);
  558. }
  559. /// <summary>
  560. /// Creates a new <see cref="Vector2"/> that contains a minimal values from the two vectors.
  561. /// </summary>
  562. /// <param name="value1">The first vector.</param>
  563. /// <param name="value2">The second vector.</param>
  564. /// <param name="result">The <see cref="Vector2"/> with minimal values from the two vectors as an output parameter.</param>
  565. public static void Min(ref Vector2 value1, ref Vector2 value2, out Vector2 result)
  566. {
  567. result.X = value1.X < value2.X ? value1.X : value2.X;
  568. result.Y = value1.Y < value2.Y ? value1.Y : value2.Y;
  569. }
  570. /// <summary>
  571. /// Creates a new <see cref="Vector2"/> that contains a multiplication of two vectors.
  572. /// </summary>
  573. /// <param name="value1">Source <see cref="Vector2"/>.</param>
  574. /// <param name="value2">Source <see cref="Vector2"/>.</param>
  575. /// <returns>The result of the vector multiplication.</returns>
  576. public static Vector2 Multiply(Vector2 value1, Vector2 value2)
  577. {
  578. value1.X *= value2.X;
  579. value1.Y *= value2.Y;
  580. return value1;
  581. }
  582. /// <summary>
  583. /// Creates a new <see cref="Vector2"/> that contains a multiplication of two vectors.
  584. /// </summary>
  585. /// <param name="value1">Source <see cref="Vector2"/>.</param>
  586. /// <param name="value2">Source <see cref="Vector2"/>.</param>
  587. /// <param name="result">The result of the vector multiplication as an output parameter.</param>
  588. public static void Multiply(ref Vector2 value1, ref Vector2 value2, out Vector2 result)
  589. {
  590. result.X = value1.X * value2.X;
  591. result.Y = value1.Y * value2.Y;
  592. }
  593. /// <summary>
  594. /// Creates a new <see cref="Vector2"/> that contains a multiplication of <see cref="Vector2"/> and a scalar.
  595. /// </summary>
  596. /// <param name="value1">Source <see cref="Vector2"/>.</param>
  597. /// <param name="scaleFactor">Scalar value.</param>
  598. /// <returns>The result of the vector multiplication with a scalar.</returns>
  599. public static Vector2 Multiply(Vector2 value1, float scaleFactor)
  600. {
  601. value1.X *= scaleFactor;
  602. value1.Y *= scaleFactor;
  603. return value1;
  604. }
  605. /// <summary>
  606. /// Creates a new <see cref="Vector2"/> that contains a multiplication of <see cref="Vector2"/> and a scalar.
  607. /// </summary>
  608. /// <param name="value1">Source <see cref="Vector2"/>.</param>
  609. /// <param name="scaleFactor">Scalar value.</param>
  610. /// <param name="result">The result of the multiplication with a scalar as an output parameter.</param>
  611. public static void Multiply(ref Vector2 value1, float scaleFactor, out Vector2 result)
  612. {
  613. result.X = value1.X * scaleFactor;
  614. result.Y = value1.Y * scaleFactor;
  615. }
  616. /// <summary>
  617. /// Creates a new <see cref="Vector2"/> that contains the specified vector inversion.
  618. /// </summary>
  619. /// <param name="value">Source <see cref="Vector2"/>.</param>
  620. /// <returns>The result of the vector inversion.</returns>
  621. public static Vector2 Negate(Vector2 value)
  622. {
  623. value.X = -value.X;
  624. value.Y = -value.Y;
  625. return value;
  626. }
  627. /// <summary>
  628. /// Creates a new <see cref="Vector2"/> that contains the specified vector inversion.
  629. /// </summary>
  630. /// <param name="value">Source <see cref="Vector2"/>.</param>
  631. /// <param name="result">The result of the vector inversion as an output parameter.</param>
  632. public static void Negate(ref Vector2 value, out Vector2 result)
  633. {
  634. result.X = -value.X;
  635. result.Y = -value.Y;
  636. }
  637. /// <summary>
  638. /// Turns this <see cref="Vector2"/> to a unit vector with the same direction.
  639. /// </summary>
  640. public void Normalize()
  641. {
  642. float val = 1.0f / (float)Math.Sqrt((X * X) + (Y * Y));
  643. X *= val;
  644. Y *= val;
  645. }
  646. /// <summary>
  647. /// Creates a new <see cref="Vector2"/> that contains a normalized values from another vector.
  648. /// </summary>
  649. /// <param name="value">Source <see cref="Vector2"/>.</param>
  650. /// <returns>Unit vector.</returns>
  651. public static Vector2 Normalize(Vector2 value)
  652. {
  653. float val = 1.0f / (float)Math.Sqrt((value.X * value.X) + (value.Y * value.Y));
  654. value.X *= val;
  655. value.Y *= val;
  656. return value;
  657. }
  658. /// <summary>
  659. /// Creates a new <see cref="Vector2"/> that contains a normalized values from another vector.
  660. /// </summary>
  661. /// <param name="value">Source <see cref="Vector2"/>.</param>
  662. /// <param name="result">Unit vector as an output parameter.</param>
  663. public static void Normalize(ref Vector2 value, out Vector2 result)
  664. {
  665. float val = 1.0f / (float)Math.Sqrt((value.X * value.X) + (value.Y * value.Y));
  666. result.X = value.X * val;
  667. result.Y = value.Y * val;
  668. }
  669. /// <summary>
  670. /// Creates a new <see cref="Vector2"/> that contains reflect vector of the given vector and normal.
  671. /// </summary>
  672. /// <param name="vector">Source <see cref="Vector2"/>.</param>
  673. /// <param name="normal">Reflection normal.</param>
  674. /// <returns>Reflected vector.</returns>
  675. public static Vector2 Reflect(Vector2 vector, Vector2 normal)
  676. {
  677. Vector2 result;
  678. float val = 2.0f * ((vector.X * normal.X) + (vector.Y * normal.Y));
  679. result.X = vector.X - (normal.X * val);
  680. result.Y = vector.Y - (normal.Y * val);
  681. return result;
  682. }
  683. /// <summary>
  684. /// Creates a new <see cref="Vector2"/> that contains reflect vector of the given vector and normal.
  685. /// </summary>
  686. /// <param name="vector">Source <see cref="Vector2"/>.</param>
  687. /// <param name="normal">Reflection normal.</param>
  688. /// <param name="result">Reflected vector as an output parameter.</param>
  689. public static void Reflect(ref Vector2 vector, ref Vector2 normal, out Vector2 result)
  690. {
  691. float val = 2.0f * ((vector.X * normal.X) + (vector.Y * normal.Y));
  692. result.X = vector.X - (normal.X * val);
  693. result.Y = vector.Y - (normal.Y * val);
  694. }
  695. /// <summary>
  696. /// Creates a new <see cref="Vector2"/> that contains cubic interpolation of the specified vectors.
  697. /// </summary>
  698. /// <param name="value1">Source <see cref="Vector2"/>.</param>
  699. /// <param name="value2">Source <see cref="Vector2"/>.</param>
  700. /// <param name="amount">Weighting value.</param>
  701. /// <returns>Cubic interpolation of the specified vectors.</returns>
  702. public static Vector2 SmoothStep(Vector2 value1, Vector2 value2, float amount)
  703. {
  704. return new Vector2(
  705. MathHelper.SmoothStep(value1.X, value2.X, amount),
  706. MathHelper.SmoothStep(value1.Y, value2.Y, amount));
  707. }
  708. /// <summary>
  709. /// Creates a new <see cref="Vector2"/> that contains cubic interpolation of the specified vectors.
  710. /// </summary>
  711. /// <param name="value1">Source <see cref="Vector2"/>.</param>
  712. /// <param name="value2">Source <see cref="Vector2"/>.</param>
  713. /// <param name="amount">Weighting value.</param>
  714. /// <param name="result">Cubic interpolation of the specified vectors as an output parameter.</param>
  715. public static void SmoothStep(ref Vector2 value1, ref Vector2 value2, float amount, out Vector2 result)
  716. {
  717. result.X = MathHelper.SmoothStep(value1.X, value2.X, amount);
  718. result.Y = MathHelper.SmoothStep(value1.Y, value2.Y, amount);
  719. }
  720. /// <summary>
  721. /// Creates a new <see cref="Vector2"/> that contains subtraction of on <see cref="Vector2"/> from a another.
  722. /// </summary>
  723. /// <param name="value1">Source <see cref="Vector2"/>.</param>
  724. /// <param name="value2">Source <see cref="Vector2"/>.</param>
  725. /// <returns>The result of the vector subtraction.</returns>
  726. public static Vector2 Subtract(Vector2 value1, Vector2 value2)
  727. {
  728. value1.X -= value2.X;
  729. value1.Y -= value2.Y;
  730. return value1;
  731. }
  732. /// <summary>
  733. /// Creates a new <see cref="Vector2"/> that contains subtraction of on <see cref="Vector2"/> from a another.
  734. /// </summary>
  735. /// <param name="value1">Source <see cref="Vector2"/>.</param>
  736. /// <param name="value2">Source <see cref="Vector2"/>.</param>
  737. /// <param name="result">The result of the vector subtraction as an output parameter.</param>
  738. public static void Subtract(ref Vector2 value1, ref Vector2 value2, out Vector2 result)
  739. {
  740. result.X = value1.X - value2.X;
  741. result.Y = value1.Y - value2.Y;
  742. }
  743. /// <summary>
  744. /// Returns a <see cref="String"/> representation of this <see cref="Vector2"/> in the format:
  745. /// {X:[<see cref="X"/>] Y:[<see cref="Y"/>]}
  746. /// </summary>
  747. /// <returns>A <see cref="String"/> representation of this <see cref="Vector2"/>.</returns>
  748. public override string ToString()
  749. {
  750. return "{X:" + X + " Y:" + Y + "}";
  751. }
  752. /// <summary>
  753. /// Gets a <see cref="Point"/> representation for this object.
  754. /// </summary>
  755. /// <returns>A <see cref="Point"/> representation for this object.</returns>
  756. public Point ToPoint()
  757. {
  758. return new Point((int) X,(int) Y);
  759. }
  760. /// <summary>
  761. /// Creates a new <see cref="Vector2"/> that contains a transformation of vector(position.X,position.Y,0,1) by the specified <see cref="Matrix"/>.
  762. /// </summary>
  763. /// <param name="position">Source <see cref="Vector2"/>.</param>
  764. /// <param name="matrix">The transformation <see cref="Matrix"/>.</param>
  765. /// <returns>Transformed <see cref="Vector2"/>.</returns>
  766. public static Vector2 Transform(Vector2 position, Matrix matrix)
  767. {
  768. return new Vector2((position.X * matrix.M11) + (position.Y * matrix.M21) + matrix.M41, (position.X * matrix.M12) + (position.Y * matrix.M22) + matrix.M42);
  769. }
  770. /// <summary>
  771. /// Creates a new <see cref="Vector2"/> that contains a transformation of vector(position.X,position.Y,0,1) by the specified <see cref="Matrix"/>.
  772. /// </summary>
  773. /// <param name="position">Source <see cref="Vector2"/>.</param>
  774. /// <param name="matrix">The transformation <see cref="Matrix"/>.</param>
  775. /// <param name="result">Transformed <see cref="Vector2"/> as an output parameter.</param>
  776. public static void Transform(ref Vector2 position, ref Matrix matrix, out Vector2 result)
  777. {
  778. var x = (position.X * matrix.M11) + (position.Y * matrix.M21) + matrix.M41;
  779. var y = (position.X * matrix.M12) + (position.Y * matrix.M22) + matrix.M42;
  780. result.X = x;
  781. result.Y = y;
  782. }
  783. /// <summary>
  784. /// Creates a new <see cref="Vector2"/> that contains a transformation of vector(position.X,position.Y,0,0) by the specified <see cref="Quaternion"/>, representing the rotation.
  785. /// </summary>
  786. /// <param name="value">Source <see cref="Vector2"/>.</param>
  787. /// <param name="rotation">The <see cref="Quaternion"/> which contains rotation transformation.</param>
  788. /// <returns>Transformed <see cref="Vector2"/>.</returns>
  789. public static Vector2 Transform(Vector2 value, Quaternion rotation)
  790. {
  791. Transform(ref value, ref rotation, out value);
  792. return value;
  793. }
  794. /// <summary>
  795. /// Creates a new <see cref="Vector2"/> that contains a transformation of vector(position.X,position.Y,0,0) by the specified <see cref="Quaternion"/>, representing the rotation.
  796. /// </summary>
  797. /// <param name="value">Source <see cref="Vector2"/>.</param>
  798. /// <param name="rotation">The <see cref="Quaternion"/> which contains rotation transformation.</param>
  799. /// <param name="result">Transformed <see cref="Vector2"/> as an output parameter.</param>
  800. public static void Transform(ref Vector2 value, ref Quaternion rotation, out Vector2 result)
  801. {
  802. var rot1 = new Vector3(rotation.X + rotation.X, rotation.Y + rotation.Y, rotation.Z + rotation.Z);
  803. var rot2 = new Vector3(rotation.X, rotation.X, rotation.W);
  804. var rot3 = new Vector3(1, rotation.Y, rotation.Z);
  805. var rot4 = rot1*rot2;
  806. var rot5 = rot1*rot3;
  807. var v = new Vector2();
  808. v.X = (float)((double)value.X * (1.0 - (double)rot5.Y - (double)rot5.Z) + (double)value.Y * ((double)rot4.Y - (double)rot4.Z));
  809. v.Y = (float)((double)value.X * ((double)rot4.Y + (double)rot4.Z) + (double)value.Y * (1.0 - (double)rot4.X - (double)rot5.Z));
  810. result.X = v.X;
  811. result.Y = v.Y;
  812. }
  813. /// <summary>
  814. /// Apply transformation on vectors within array of <see cref="Vector2"/> by the specified <see cref="Matrix"/> and places the results in an another array.
  815. /// </summary>
  816. /// <param name="sourceArray">Source array.</param>
  817. /// <param name="sourceIndex">The starting index of transformation in the source array.</param>
  818. /// <param name="matrix">The transformation <see cref="Matrix"/>.</param>
  819. /// <param name="destinationArray">Destination array.</param>
  820. /// <param name="destinationIndex">The starting index in the destination array, where the first <see cref="Vector2"/> should be written.</param>
  821. /// <param name="length">The number of vectors to be transformed.</param>
  822. public static void Transform(
  823. Vector2[] sourceArray,
  824. int sourceIndex,
  825. ref Matrix matrix,
  826. Vector2[] destinationArray,
  827. int destinationIndex,
  828. int length)
  829. {
  830. if (sourceArray == null)
  831. throw new ArgumentNullException("sourceArray");
  832. if (destinationArray == null)
  833. throw new ArgumentNullException("destinationArray");
  834. if (sourceArray.Length < sourceIndex + length)
  835. throw new ArgumentException("Source array length is lesser than sourceIndex + length");
  836. if (destinationArray.Length < destinationIndex + length)
  837. throw new ArgumentException("Destination array length is lesser than destinationIndex + length");
  838. for (int x = 0; x < length; x++)
  839. {
  840. var position = sourceArray[sourceIndex + x];
  841. var destination = destinationArray[destinationIndex + x];
  842. destination.X = (position.X * matrix.M11) + (position.Y * matrix.M21) + matrix.M41;
  843. destination.Y = (position.X * matrix.M12) + (position.Y * matrix.M22) + matrix.M42;
  844. destinationArray[destinationIndex + x] = destination;
  845. }
  846. }
  847. /// <summary>
  848. /// Apply transformation on vectors within array of <see cref="Vector2"/> by the specified <see cref="Quaternion"/> and places the results in an another array.
  849. /// </summary>
  850. /// <param name="sourceArray">Source array.</param>
  851. /// <param name="sourceIndex">The starting index of transformation in the source array.</param>
  852. /// <param name="rotation">The <see cref="Quaternion"/> which contains rotation transformation.</param>
  853. /// <param name="destinationArray">Destination array.</param>
  854. /// <param name="destinationIndex">The starting index in the destination array, where the first <see cref="Vector2"/> should be written.</param>
  855. /// <param name="length">The number of vectors to be transformed.</param>
  856. public static void Transform
  857. (
  858. Vector2[] sourceArray,
  859. int sourceIndex,
  860. ref Quaternion rotation,
  861. Vector2[] destinationArray,
  862. int destinationIndex,
  863. int length
  864. )
  865. {
  866. if (sourceArray == null)
  867. throw new ArgumentNullException("sourceArray");
  868. if (destinationArray == null)
  869. throw new ArgumentNullException("destinationArray");
  870. if (sourceArray.Length < sourceIndex + length)
  871. throw new ArgumentException("Source array length is lesser than sourceIndex + length");
  872. if (destinationArray.Length < destinationIndex + length)
  873. throw new ArgumentException("Destination array length is lesser than destinationIndex + length");
  874. for (int x = 0; x < length; x++)
  875. {
  876. var position = sourceArray[sourceIndex + x];
  877. var destination = destinationArray[destinationIndex + x];
  878. Vector2 v;
  879. Transform(ref position,ref rotation,out v);
  880. destination.X = v.X;
  881. destination.Y = v.Y;
  882. destinationArray[destinationIndex + x] = destination;
  883. }
  884. }
  885. /// <summary>
  886. /// Apply transformation on all vectors within array of <see cref="Vector2"/> by the specified <see cref="Matrix"/> and places the results in an another array.
  887. /// </summary>
  888. /// <param name="sourceArray">Source array.</param>
  889. /// <param name="matrix">The transformation <see cref="Matrix"/>.</param>
  890. /// <param name="destinationArray">Destination array.</param>
  891. public static void Transform(
  892. Vector2[] sourceArray,
  893. ref Matrix matrix,
  894. Vector2[] destinationArray)
  895. {
  896. Transform(sourceArray, 0, ref matrix, destinationArray, 0, sourceArray.Length);
  897. }
  898. /// <summary>
  899. /// Apply transformation on all vectors within array of <see cref="Vector2"/> by the specified <see cref="Quaternion"/> and places the results in an another array.
  900. /// </summary>
  901. /// <param name="sourceArray">Source array.</param>
  902. /// <param name="rotation">The <see cref="Quaternion"/> which contains rotation transformation.</param>
  903. /// <param name="destinationArray">Destination array.</param>
  904. public static void Transform
  905. (
  906. Vector2[] sourceArray,
  907. ref Quaternion rotation,
  908. Vector2[] destinationArray
  909. )
  910. {
  911. Transform(sourceArray, 0, ref rotation, destinationArray, 0, sourceArray.Length);
  912. }
  913. /// <summary>
  914. /// Creates a new <see cref="Vector2"/> that contains a transformation of the specified normal by the specified <see cref="Matrix"/>.
  915. /// </summary>
  916. /// <param name="normal">Source <see cref="Vector2"/> which represents a normal vector.</param>
  917. /// <param name="matrix">The transformation <see cref="Matrix"/>.</param>
  918. /// <returns>Transformed normal.</returns>
  919. public static Vector2 TransformNormal(Vector2 normal, Matrix matrix)
  920. {
  921. return new Vector2((normal.X * matrix.M11) + (normal.Y * matrix.M21),(normal.X * matrix.M12) + (normal.Y * matrix.M22));
  922. }
  923. /// <summary>
  924. /// Creates a new <see cref="Vector2"/> that contains a transformation of the specified normal by the specified <see cref="Matrix"/>.
  925. /// </summary>
  926. /// <param name="normal">Source <see cref="Vector2"/> which represents a normal vector.</param>
  927. /// <param name="matrix">The transformation <see cref="Matrix"/>.</param>
  928. /// <param name="result">Transformed normal as an output parameter.</param>
  929. public static void TransformNormal(ref Vector2 normal, ref Matrix matrix, out Vector2 result)
  930. {
  931. var x = (normal.X * matrix.M11) + (normal.Y * matrix.M21);
  932. var y = (normal.X * matrix.M12) + (normal.Y * matrix.M22);
  933. result.X = x;
  934. result.Y = y;
  935. }
  936. /// <summary>
  937. /// Apply transformation on normals within array of <see cref="Vector2"/> by the specified <see cref="Matrix"/> and places the results in an another array.
  938. /// </summary>
  939. /// <param name="sourceArray">Source array.</param>
  940. /// <param name="sourceIndex">The starting index of transformation in the source array.</param>
  941. /// <param name="matrix">The transformation <see cref="Matrix"/>.</param>
  942. /// <param name="destinationArray">Destination array.</param>
  943. /// <param name="destinationIndex">The starting index in the destination array, where the first <see cref="Vector2"/> should be written.</param>
  944. /// <param name="length">The number of normals to be transformed.</param>
  945. public static void TransformNormal
  946. (
  947. Vector2[] sourceArray,
  948. int sourceIndex,
  949. ref Matrix matrix,
  950. Vector2[] destinationArray,
  951. int destinationIndex,
  952. int length
  953. )
  954. {
  955. if (sourceArray == null)
  956. throw new ArgumentNullException("sourceArray");
  957. if (destinationArray == null)
  958. throw new ArgumentNullException("destinationArray");
  959. if (sourceArray.Length < sourceIndex + length)
  960. throw new ArgumentException("Source array length is lesser than sourceIndex + length");
  961. if (destinationArray.Length < destinationIndex + length)
  962. throw new ArgumentException("Destination array length is lesser than destinationIndex + length");
  963. for (int i = 0; i < length; i++)
  964. {
  965. var normal = sourceArray[sourceIndex + i];
  966. destinationArray[destinationIndex + i] = new Vector2((normal.X * matrix.M11) + (normal.Y * matrix.M21),
  967. (normal.X * matrix.M12) + (normal.Y * matrix.M22));
  968. }
  969. }
  970. /// <summary>
  971. /// Apply transformation on all normals within array of <see cref="Vector2"/> by the specified <see cref="Matrix"/> and places the results in an another array.
  972. /// </summary>
  973. /// <param name="sourceArray">Source array.</param>
  974. /// <param name="matrix">The transformation <see cref="Matrix"/>.</param>
  975. /// <param name="destinationArray">Destination array.</param>
  976. public static void TransformNormal
  977. (
  978. Vector2[] sourceArray,
  979. ref Matrix matrix,
  980. Vector2[] destinationArray
  981. )
  982. {
  983. if (sourceArray == null)
  984. throw new ArgumentNullException("sourceArray");
  985. if (destinationArray == null)
  986. throw new ArgumentNullException("destinationArray");
  987. if (destinationArray.Length < sourceArray.Length)
  988. throw new ArgumentException("Destination array length is lesser than source array length");
  989. for (int i = 0; i < sourceArray.Length; i++)
  990. {
  991. var normal = sourceArray[i];
  992. destinationArray[i] = new Vector2((normal.X * matrix.M11) + (normal.Y * matrix.M21),
  993. (normal.X * matrix.M12) + (normal.Y * matrix.M22));
  994. }
  995. }
  996. #endregion
  997. }
  998. }