Vector4.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670
  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.Text;
  6. using System.Runtime.Serialization;
  7. using System.Diagnostics;
  8. namespace CommonLang.Geometry
  9. {
  10. public struct Vector4 : IEquatable<Vector4>
  11. {
  12. #region Private Fields
  13. private static Vector4 zeroVector = new Vector4();
  14. private static Vector4 unitVector = new Vector4(1f, 1f, 1f, 1f);
  15. private static Vector4 unitXVector = new Vector4(1f, 0f, 0f, 0f);
  16. private static Vector4 unitYVector = new Vector4(0f, 1f, 0f, 0f);
  17. private static Vector4 unitZVector = new Vector4(0f, 0f, 1f, 0f);
  18. private static Vector4 unitWVector = new Vector4(0f, 0f, 0f, 1f);
  19. #endregion Private Fields
  20. #region Public Fields
  21. public float X;
  22. public float Y;
  23. public float Z;
  24. public float W;
  25. #endregion Public Fields
  26. #region Properties
  27. /// <summary>
  28. /// Returns a <see>Vector4</see> with components 0, 0, 0, 0.
  29. /// </summary>
  30. public static Vector4 Zero
  31. {
  32. get { return zeroVector; }
  33. }
  34. /// <summary>
  35. /// Returns a <see>Vector4</see> with components 1, 1, 1, 1.
  36. /// </summary>
  37. public static Vector4 One
  38. {
  39. get { return unitVector; }
  40. }
  41. /// <summary>
  42. /// Returns a <see>Vector4</see> with components 1, 0, 0, 0.
  43. /// </summary>
  44. public static Vector4 UnitX
  45. {
  46. get { return unitXVector; }
  47. }
  48. /// <summary>
  49. /// Returns a <see>Vector4</see> with components 0, 1, 0, 0.
  50. /// </summary>
  51. public static Vector4 UnitY
  52. {
  53. get { return unitYVector; }
  54. }
  55. /// <summary>
  56. /// Returns a <see>Vector4</see> with components 0, 0, 1, 0.
  57. /// </summary>
  58. public static Vector4 UnitZ
  59. {
  60. get { return unitZVector; }
  61. }
  62. /// <summary>
  63. /// Returns a <see>Vector4</see> with components 0, 0, 0, 1.
  64. /// </summary>
  65. public static Vector4 UnitW
  66. {
  67. get { return unitWVector; }
  68. }
  69. #endregion Properties
  70. #region Constructors
  71. public Vector4(float x, float y, float z, float w)
  72. {
  73. this.X = x;
  74. this.Y = y;
  75. this.Z = z;
  76. this.W = w;
  77. }
  78. public Vector4(Vector2 value, float z, float w)
  79. {
  80. this.X = value.X;
  81. this.Y = value.Y;
  82. this.Z = z;
  83. this.W = w;
  84. }
  85. public Vector4(Vector3 value, float w)
  86. {
  87. this.X = value.X;
  88. this.Y = value.Y;
  89. this.Z = value.Z;
  90. this.W = w;
  91. }
  92. public Vector4(float value)
  93. {
  94. this.X = value;
  95. this.Y = value;
  96. this.Z = value;
  97. this.W = value;
  98. }
  99. #endregion
  100. #region Public Methods
  101. /// <summary>
  102. /// Performs vector addition on <paramref name="value1"/> and <paramref name="value2"/>.
  103. /// </summary>
  104. /// <param name="value1">The first vector to add.</param>
  105. /// <param name="value2">The second vector to add.</param>
  106. /// <returns>The result of the vector addition.</returns>
  107. public static Vector4 Add(Vector4 value1, Vector4 value2)
  108. {
  109. value1.X += value2.X;
  110. value1.Y += value2.Y;
  111. value1.Z += value2.Z;
  112. value1.W += value2.W;
  113. return value1;
  114. }
  115. /// <summary>
  116. /// Performs vector addition on <paramref name="value1"/> and
  117. /// <paramref name="value2"/>, storing the result of the
  118. /// addition in <paramref name="result"/>.
  119. /// </summary>
  120. /// <param name="value1">The first vector to add.</param>
  121. /// <param name="value2">The second vector to add.</param>
  122. /// <param name="result">The result of the vector addition.</param>
  123. public static void Add(ref Vector4 value1, ref Vector4 value2, out Vector4 result)
  124. {
  125. result.X = value1.X + value2.X;
  126. result.Y = value1.Y + value2.Y;
  127. result.Z = value1.Z + value2.Z;
  128. result.W = value1.W + value2.W;
  129. }
  130. public static Vector4 Barycentric(Vector4 value1, Vector4 value2, Vector4 value3, float amount1, float amount2)
  131. {
  132. return new Vector4(
  133. MathHelper.Barycentric(value1.X, value2.X, value3.X, amount1, amount2),
  134. MathHelper.Barycentric(value1.Y, value2.Y, value3.Y, amount1, amount2),
  135. MathHelper.Barycentric(value1.Z, value2.Z, value3.Z, amount1, amount2),
  136. MathHelper.Barycentric(value1.W, value2.W, value3.W, amount1, amount2));
  137. }
  138. public static void Barycentric(ref Vector4 value1, ref Vector4 value2, ref Vector4 value3, float amount1, float amount2, out Vector4 result)
  139. {
  140. result.X = MathHelper.Barycentric(value1.X, value2.X, value3.X, amount1, amount2);
  141. result.Y = MathHelper.Barycentric(value1.Y, value2.Y, value3.Y, amount1, amount2);
  142. result.Z = MathHelper.Barycentric(value1.Z, value2.Z, value3.Z, amount1, amount2);
  143. result.W = MathHelper.Barycentric(value1.W, value2.W, value3.W, amount1, amount2);
  144. }
  145. public static Vector4 CatmullRom(Vector4 value1, Vector4 value2, Vector4 value3, Vector4 value4, float amount)
  146. {
  147. return new Vector4(
  148. MathHelper.CatmullRom(value1.X, value2.X, value3.X, value4.X, amount),
  149. MathHelper.CatmullRom(value1.Y, value2.Y, value3.Y, value4.Y, amount),
  150. MathHelper.CatmullRom(value1.Z, value2.Z, value3.Z, value4.Z, amount),
  151. MathHelper.CatmullRom(value1.W, value2.W, value3.W, value4.W, amount));
  152. }
  153. public static void CatmullRom(ref Vector4 value1, ref Vector4 value2, ref Vector4 value3, ref Vector4 value4, float amount, out Vector4 result)
  154. {
  155. result.X = MathHelper.CatmullRom(value1.X, value2.X, value3.X, value4.X, amount);
  156. result.Y = MathHelper.CatmullRom(value1.Y, value2.Y, value3.Y, value4.Y, amount);
  157. result.Z = MathHelper.CatmullRom(value1.Z, value2.Z, value3.Z, value4.Z, amount);
  158. result.W = MathHelper.CatmullRom(value1.W, value2.W, value3.W, value4.W, amount);
  159. }
  160. public static Vector4 Clamp(Vector4 value1, Vector4 min, Vector4 max)
  161. {
  162. return new Vector4(
  163. MathHelper.Clamp(value1.X, min.X, max.X),
  164. MathHelper.Clamp(value1.Y, min.Y, max.Y),
  165. MathHelper.Clamp(value1.Z, min.Z, max.Z),
  166. MathHelper.Clamp(value1.W, min.W, max.W));
  167. }
  168. public static void Clamp(ref Vector4 value1, ref Vector4 min, ref Vector4 max, out Vector4 result)
  169. {
  170. result.X = MathHelper.Clamp(value1.X, min.X, max.X);
  171. result.Y = MathHelper.Clamp(value1.Y, min.Y, max.Y);
  172. result.Z = MathHelper.Clamp(value1.Z, min.Z, max.Z);
  173. result.W = MathHelper.Clamp(value1.W, min.W, max.W);
  174. }
  175. public static float Distance(Vector4 value1, Vector4 value2)
  176. {
  177. return (float)Math.Sqrt(DistanceSquared(value1, value2));
  178. }
  179. public static void Distance(ref Vector4 value1, ref Vector4 value2, out float result)
  180. {
  181. result = (float)Math.Sqrt(DistanceSquared(value1, value2));
  182. }
  183. public static float DistanceSquared(Vector4 value1, Vector4 value2)
  184. {
  185. float result;
  186. DistanceSquared(ref value1, ref value2, out result);
  187. return result;
  188. }
  189. public static void DistanceSquared(ref Vector4 value1, ref Vector4 value2, out float result)
  190. {
  191. result = (value1.W - value2.W) * (value1.W - value2.W) +
  192. (value1.X - value2.X) * (value1.X - value2.X) +
  193. (value1.Y - value2.Y) * (value1.Y - value2.Y) +
  194. (value1.Z - value2.Z) * (value1.Z - value2.Z);
  195. }
  196. public static Vector4 Divide(Vector4 value1, Vector4 value2)
  197. {
  198. value1.W /= value2.W;
  199. value1.X /= value2.X;
  200. value1.Y /= value2.Y;
  201. value1.Z /= value2.Z;
  202. return value1;
  203. }
  204. public static Vector4 Divide(Vector4 value1, float divider)
  205. {
  206. float factor = 1f / divider;
  207. value1.W *= factor;
  208. value1.X *= factor;
  209. value1.Y *= factor;
  210. value1.Z *= factor;
  211. return value1;
  212. }
  213. public static void Divide(ref Vector4 value1, float divider, out Vector4 result)
  214. {
  215. float factor = 1f / divider;
  216. result.W = value1.W * factor;
  217. result.X = value1.X * factor;
  218. result.Y = value1.Y * factor;
  219. result.Z = value1.Z * factor;
  220. }
  221. public static void Divide(ref Vector4 value1, ref Vector4 value2, out Vector4 result)
  222. {
  223. result.W = value1.W / value2.W;
  224. result.X = value1.X / value2.X;
  225. result.Y = value1.Y / value2.Y;
  226. result.Z = value1.Z / value2.Z;
  227. }
  228. public static float Dot(Vector4 vector1, Vector4 vector2)
  229. {
  230. return vector1.X * vector2.X + vector1.Y * vector2.Y + vector1.Z * vector2.Z + vector1.W * vector2.W;
  231. }
  232. public static void Dot(ref Vector4 vector1, ref Vector4 vector2, out float result)
  233. {
  234. result = vector1.X * vector2.X + vector1.Y * vector2.Y + vector1.Z * vector2.Z + vector1.W * vector2.W;
  235. }
  236. public override bool Equals(object obj)
  237. {
  238. return (obj is Vector4) ? this == (Vector4)obj : false;
  239. }
  240. public bool Equals(Vector4 other)
  241. {
  242. return this.W == other.W
  243. && this.X == other.X
  244. && this.Y == other.Y
  245. && this.Z == other.Z;
  246. }
  247. public override int GetHashCode()
  248. {
  249. return (int)(this.W + this.X + this.Y + this.Y);
  250. }
  251. public static Vector4 Hermite(Vector4 value1, Vector4 tangent1, Vector4 value2, Vector4 tangent2, float amount)
  252. {
  253. Vector4 result = new Vector4();
  254. Hermite(ref value1, ref tangent1, ref value2, ref tangent2, amount, out result);
  255. return result;
  256. }
  257. public static void Hermite(ref Vector4 value1, ref Vector4 tangent1, ref Vector4 value2, ref Vector4 tangent2, float amount, out Vector4 result)
  258. {
  259. result.W = MathHelper.Hermite(value1.W, tangent1.W, value2.W, tangent2.W, amount);
  260. result.X = MathHelper.Hermite(value1.X, tangent1.X, value2.X, tangent2.X, amount);
  261. result.Y = MathHelper.Hermite(value1.Y, tangent1.Y, value2.Y, tangent2.Y, amount);
  262. result.Z = MathHelper.Hermite(value1.Z, tangent1.Z, value2.Z, tangent2.Z, amount);
  263. }
  264. public float Length()
  265. {
  266. float result;
  267. DistanceSquared(ref this, ref zeroVector, out result);
  268. return (float)Math.Sqrt(result);
  269. }
  270. public float LengthSquared()
  271. {
  272. float result;
  273. DistanceSquared(ref this, ref zeroVector, out result);
  274. return result;
  275. }
  276. public static Vector4 Lerp(Vector4 value1, Vector4 value2, float amount)
  277. {
  278. return new Vector4(
  279. MathHelper.Lerp(value1.X, value2.X, amount),
  280. MathHelper.Lerp(value1.Y, value2.Y, amount),
  281. MathHelper.Lerp(value1.Z, value2.Z, amount),
  282. MathHelper.Lerp(value1.W, value2.W, amount));
  283. }
  284. public static void Lerp(ref Vector4 value1, ref Vector4 value2, float amount, out Vector4 result)
  285. {
  286. result.X = MathHelper.Lerp(value1.X, value2.X, amount);
  287. result.Y = MathHelper.Lerp(value1.Y, value2.Y, amount);
  288. result.Z = MathHelper.Lerp(value1.Z, value2.Z, amount);
  289. result.W = MathHelper.Lerp(value1.W, value2.W, amount);
  290. }
  291. public static Vector4 Max(Vector4 value1, Vector4 value2)
  292. {
  293. return new Vector4(
  294. MathHelper.Max(value1.X, value2.X),
  295. MathHelper.Max(value1.Y, value2.Y),
  296. MathHelper.Max(value1.Z, value2.Z),
  297. MathHelper.Max(value1.W, value2.W));
  298. }
  299. public static void Max(ref Vector4 value1, ref Vector4 value2, out Vector4 result)
  300. {
  301. result.X = MathHelper.Max(value1.X, value2.X);
  302. result.Y = MathHelper.Max(value1.Y, value2.Y);
  303. result.Z = MathHelper.Max(value1.Z, value2.Z);
  304. result.W = MathHelper.Max(value1.W, value2.W);
  305. }
  306. public static Vector4 Min(Vector4 value1, Vector4 value2)
  307. {
  308. return new Vector4(
  309. MathHelper.Min(value1.X, value2.X),
  310. MathHelper.Min(value1.Y, value2.Y),
  311. MathHelper.Min(value1.Z, value2.Z),
  312. MathHelper.Min(value1.W, value2.W));
  313. }
  314. public static void Min(ref Vector4 value1, ref Vector4 value2, out Vector4 result)
  315. {
  316. result.X = MathHelper.Min(value1.X, value2.X);
  317. result.Y = MathHelper.Min(value1.Y, value2.Y);
  318. result.Z = MathHelper.Min(value1.Z, value2.Z);
  319. result.W = MathHelper.Min(value1.W, value2.W);
  320. }
  321. public static Vector4 Multiply(Vector4 value1, Vector4 value2)
  322. {
  323. value1.W *= value2.W;
  324. value1.X *= value2.X;
  325. value1.Y *= value2.Y;
  326. value1.Z *= value2.Z;
  327. return value1;
  328. }
  329. public static Vector4 Multiply(Vector4 value1, float scaleFactor)
  330. {
  331. value1.W *= scaleFactor;
  332. value1.X *= scaleFactor;
  333. value1.Y *= scaleFactor;
  334. value1.Z *= scaleFactor;
  335. return value1;
  336. }
  337. public static void Multiply(ref Vector4 value1, float scaleFactor, out Vector4 result)
  338. {
  339. result.W = value1.W * scaleFactor;
  340. result.X = value1.X * scaleFactor;
  341. result.Y = value1.Y * scaleFactor;
  342. result.Z = value1.Z * scaleFactor;
  343. }
  344. public static void Multiply(ref Vector4 value1, ref Vector4 value2, out Vector4 result)
  345. {
  346. result.W = value1.W * value2.W;
  347. result.X = value1.X * value2.X;
  348. result.Y = value1.Y * value2.Y;
  349. result.Z = value1.Z * value2.Z;
  350. }
  351. public static Vector4 Negate(Vector4 value)
  352. {
  353. value = new Vector4(-value.X, -value.Y, -value.Z, -value.W);
  354. return value;
  355. }
  356. public static void Negate(ref Vector4 value, out Vector4 result)
  357. {
  358. result.X = -value.X;
  359. result.Y = -value.Y;
  360. result.Z = -value.Z;
  361. result.W = -value.W;
  362. }
  363. public void Normalize()
  364. {
  365. Normalize(ref this, out this);
  366. }
  367. public static Vector4 Normalize(Vector4 vector)
  368. {
  369. Normalize(ref vector, out vector);
  370. return vector;
  371. }
  372. public static void Normalize(ref Vector4 vector, out Vector4 result)
  373. {
  374. float factor;
  375. DistanceSquared(ref vector, ref zeroVector, out factor);
  376. factor = 1f / (float)Math.Sqrt(factor);
  377. result.W = vector.W * factor;
  378. result.X = vector.X * factor;
  379. result.Y = vector.Y * factor;
  380. result.Z = vector.Z * factor;
  381. }
  382. public static Vector4 SmoothStep(Vector4 value1, Vector4 value2, float amount)
  383. {
  384. return new Vector4(
  385. MathHelper.SmoothStep(value1.X, value2.X, amount),
  386. MathHelper.SmoothStep(value1.Y, value2.Y, amount),
  387. MathHelper.SmoothStep(value1.Z, value2.Z, amount),
  388. MathHelper.SmoothStep(value1.W, value2.W, amount));
  389. }
  390. public static void SmoothStep(ref Vector4 value1, ref Vector4 value2, float amount, out Vector4 result)
  391. {
  392. result.X = MathHelper.SmoothStep(value1.X, value2.X, amount);
  393. result.Y = MathHelper.SmoothStep(value1.Y, value2.Y, amount);
  394. result.Z = MathHelper.SmoothStep(value1.Z, value2.Z, amount);
  395. result.W = MathHelper.SmoothStep(value1.W, value2.W, amount);
  396. }
  397. /// <summary>
  398. /// Performs vector subtraction on <paramref name="value1"/> and <paramref name="value2"/>.
  399. /// </summary>
  400. /// <param name="value1">The vector to be subtracted from.</param>
  401. /// <param name="value2">The vector to be subtracted from <paramref name="value1"/>.</param>
  402. /// <returns>The result of the vector subtraction.</returns>
  403. public static Vector4 Subtract(Vector4 value1, Vector4 value2)
  404. {
  405. value1.W -= value2.W;
  406. value1.X -= value2.X;
  407. value1.Y -= value2.Y;
  408. value1.Z -= value2.Z;
  409. return value1;
  410. }
  411. /// <summary>
  412. /// Performs vector subtraction on <paramref name="value1"/> and <paramref name="value2"/>.
  413. /// </summary>
  414. /// <param name="value1">The vector to be subtracted from.</param>
  415. /// <param name="value2">The vector to be subtracted from <paramref name="value1"/>.</param>
  416. /// <param name="result">The result of the vector subtraction.</param>
  417. public static void Subtract(ref Vector4 value1, ref Vector4 value2, out Vector4 result)
  418. {
  419. result.W = value1.W - value2.W;
  420. result.X = value1.X - value2.X;
  421. result.Y = value1.Y - value2.Y;
  422. result.Z = value1.Z - value2.Z;
  423. }
  424. public static Vector4 Transform(Vector2 position, Matrix matrix)
  425. {
  426. Vector4 result;
  427. Transform(ref position, ref matrix, out result);
  428. return result;
  429. }
  430. public static Vector4 Transform(Vector3 position, Matrix matrix)
  431. {
  432. Vector4 result;
  433. Transform(ref position, ref matrix, out result);
  434. return result;
  435. }
  436. public static Vector4 Transform(Vector4 vector, Matrix matrix)
  437. {
  438. Transform(ref vector, ref matrix, out vector);
  439. return vector;
  440. }
  441. public static void Transform(ref Vector2 position, ref Matrix matrix, out Vector4 result)
  442. {
  443. result.X = (position.X * matrix.M11) + (position.Y * matrix.M21) + matrix.M41;
  444. result.Y = (position.X * matrix.M12) + (position.Y * matrix.M22) + matrix.M42;
  445. result.Z = (position.X * matrix.M13) + (position.Y * matrix.M23) + matrix.M43;
  446. result.W = (position.X * matrix.M14) + (position.Y * matrix.M24) + matrix.M44;
  447. }
  448. public static void Transform(ref Vector3 position, ref Matrix matrix, out Vector4 result)
  449. {
  450. result.X = (position.X * matrix.M11) + (position.Y * matrix.M21) + (position.Z * matrix.M31) + matrix.M41;
  451. result.Y = (position.X * matrix.M12) + (position.Y * matrix.M22) + (position.Z * matrix.M32) + matrix.M42;
  452. result.Z = (position.X * matrix.M13) + (position.Y * matrix.M23) + (position.Z * matrix.M33) + matrix.M43;
  453. result.W = (position.X * matrix.M14) + (position.Y * matrix.M24) + (position.Z * matrix.M34) + matrix.M44;
  454. }
  455. public static void Transform(ref Vector4 vector, ref Matrix matrix, out Vector4 result)
  456. {
  457. var x = (vector.X * matrix.M11) + (vector.Y * matrix.M21) + (vector.Z * matrix.M31) + (vector.W * matrix.M41);
  458. var y = (vector.X * matrix.M12) + (vector.Y * matrix.M22) + (vector.Z * matrix.M32) + (vector.W * matrix.M42);
  459. var z = (vector.X * matrix.M13) + (vector.Y * matrix.M23) + (vector.Z * matrix.M33) + (vector.W * matrix.M43);
  460. var w = (vector.X * matrix.M14) + (vector.Y * matrix.M24) + (vector.Z * matrix.M34) + (vector.W * matrix.M44);
  461. result.X = x;
  462. result.Y = y;
  463. result.Z = z;
  464. result.W = w;
  465. }
  466. internal string DebugDisplayString
  467. {
  468. get
  469. {
  470. return string.Concat(
  471. this.X.ToString(), " ",
  472. this.Y.ToString(), " ",
  473. this.Z.ToString(), " ",
  474. this.W.ToString()
  475. );
  476. }
  477. }
  478. public override string ToString()
  479. {
  480. StringBuilder sb = new StringBuilder(32);
  481. sb.Append("{X:");
  482. sb.Append(this.X);
  483. sb.Append(" Y:");
  484. sb.Append(this.Y);
  485. sb.Append(" Z:");
  486. sb.Append(this.Z);
  487. sb.Append(" W:");
  488. sb.Append(this.W);
  489. sb.Append("}");
  490. return sb.ToString();
  491. }
  492. #endregion Public Methods
  493. #region Operators
  494. public static Vector4 operator -(Vector4 value)
  495. {
  496. return new Vector4(-value.X, -value.Y, -value.Z, -value.W);
  497. }
  498. public static bool operator ==(Vector4 value1, Vector4 value2)
  499. {
  500. return value1.W == value2.W
  501. && value1.X == value2.X
  502. && value1.Y == value2.Y
  503. && value1.Z == value2.Z;
  504. }
  505. public static bool operator !=(Vector4 value1, Vector4 value2)
  506. {
  507. return !(value1 == value2);
  508. }
  509. public static Vector4 operator +(Vector4 value1, Vector4 value2)
  510. {
  511. value1.W += value2.W;
  512. value1.X += value2.X;
  513. value1.Y += value2.Y;
  514. value1.Z += value2.Z;
  515. return value1;
  516. }
  517. public static Vector4 operator -(Vector4 value1, Vector4 value2)
  518. {
  519. value1.W -= value2.W;
  520. value1.X -= value2.X;
  521. value1.Y -= value2.Y;
  522. value1.Z -= value2.Z;
  523. return value1;
  524. }
  525. public static Vector4 operator *(Vector4 value1, Vector4 value2)
  526. {
  527. value1.W *= value2.W;
  528. value1.X *= value2.X;
  529. value1.Y *= value2.Y;
  530. value1.Z *= value2.Z;
  531. return value1;
  532. }
  533. public static Vector4 operator *(Vector4 value1, float scaleFactor)
  534. {
  535. value1.W *= scaleFactor;
  536. value1.X *= scaleFactor;
  537. value1.Y *= scaleFactor;
  538. value1.Z *= scaleFactor;
  539. return value1;
  540. }
  541. public static Vector4 operator *(float scaleFactor, Vector4 value1)
  542. {
  543. value1.W *= scaleFactor;
  544. value1.X *= scaleFactor;
  545. value1.Y *= scaleFactor;
  546. value1.Z *= scaleFactor;
  547. return value1;
  548. }
  549. public static Vector4 operator /(Vector4 value1, Vector4 value2)
  550. {
  551. value1.W /= value2.W;
  552. value1.X /= value2.X;
  553. value1.Y /= value2.Y;
  554. value1.Z /= value2.Z;
  555. return value1;
  556. }
  557. public static Vector4 operator /(Vector4 value1, float divider)
  558. {
  559. float factor = 1f / divider;
  560. value1.W *= factor;
  561. value1.X *= factor;
  562. value1.Y *= factor;
  563. value1.Z *= factor;
  564. return value1;
  565. }
  566. #endregion Operators
  567. }
  568. }