3D向量类

作者:追风剑情 发布于:2017-1-15 14:49 分类:Algorithms

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace MathTest
  7. {
  8. /// <summary>
  9. /// 3D向量类
  10. /// </summary>
  11. public class Vector3
  12. {
  13. public float x;
  14. public float y;
  15. public float z;
  16.  
  17. public Vector3() { }
  18.  
  19. public Vector3(Vector3 a)
  20. {
  21. x = a.x;
  22. y = a.y;
  23. z = a.z;
  24. }
  25.  
  26. public Vector3(float x, float y, float z)
  27. {
  28. this.x = x;
  29. this.y = y;
  30. this.z = z;
  31. }
  32.  
  33. //置为零向量
  34. public void Zero()
  35. {
  36. x = y = z = 0.0f;
  37. }
  38.  
  39. //向量标准化
  40. public void Normalize()
  41. {
  42. float magSq = x * x + y * y + z * z;
  43. if (magSq > 0.0f) //检查除零
  44. {
  45. float oneOverMag = 1.0f / (float)Math.Sqrt(magSq);
  46. x *= oneOverMag;
  47. y *= oneOverMag;
  48. z *= oneOverMag;
  49. }
  50. }
  51.  
  52. //重载"=="操作符
  53. public static bool operator ==(Vector3 a, Vector3 b)
  54. {
  55. return a.x == b.x && a.y == b.y && a.z == b.z;
  56. }
  57.  
  58. //重载"!="操作符
  59. public static bool operator !=(Vector3 a, Vector3 b)
  60. {
  61. return a.x != b.x || a.y != b.y || a.z != b.z;
  62. }
  63.  
  64. //重载二元"+"运算符
  65. public static Vector3 operator +(Vector3 a, Vector3 b)
  66. {
  67. return new Vector3(a.x + b.x, a.y + b.y, a.z + b.z);
  68. }
  69.  
  70. //重载二元"-"运算符
  71. public static Vector3 operator -(Vector3 a, Vector3 b)
  72. {
  73. return new Vector3(a.x - b.x, a.y - b.y, a.z - b.z);
  74. }
  75.  
  76. //重载一元"-"运算符
  77. public static Vector3 operator -(Vector3 a)
  78. {
  79. return new Vector3(-a.x, -a.y, -a.z);
  80. }
  81.  
  82. //与标量的乘法
  83. public static Vector3 operator *(Vector3 a, float n)
  84. {
  85. return new Vector3(a.x * n, a.y * n, a.z * n);
  86. }
  87.  
  88. //向量点乘
  89. public static Vector3 operator *(Vector3 a, Vector3 b)
  90. {
  91. return new Vector3(a.x * b.x, a.y * b.y, a.z * b.z);
  92. }
  93.  
  94. //与标量的除法
  95. public static Vector3 operator /(Vector3 a, float n)
  96. {
  97. float oneOverN = 1.0f / n; //注意:这里不对“除零”进行检查
  98. return new Vector3(a.x * oneOverN, a.y * oneOverN, a.z * oneOverN);
  99. }
  100.  
  101. //求向量模
  102. public float VectorMag()
  103. {
  104. return (float)Math.Sqrt(x * x + y * y + z * z);
  105. }
  106.  
  107. //计算两向量的叉乘
  108. public static Vector3 CrossProduct(Vector3 a, Vector3 b)
  109. {
  110. return new Vector3(
  111. a.y * b.z - a.z * b.y,
  112. a.z * b.x - a.x * b.z,
  113. a.x * b.y - a.y * b.x
  114. );
  115. }
  116.  
  117. //计算两点间的距离
  118. public static float Distance(Vector3 a, Vector3 b)
  119. {
  120. float dx = a.x - b.x;
  121. float dy = a.y - b.y;
  122. float dz = a.z - b.z;
  123. return (float)Math.Sqrt(dx * dx + dy * dy + dz * dz);
  124. }
  125. }
  126. }

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号