Vector3.cs 59 KB

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