Vector2D.cs 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace bbiwarg.Utility
  8. {
  9. public class Vector2D
  10. {
  11. public static Vector2D Zero { get { return new Vector2D(0, 0); } }
  12. public float X { get; private set; }
  13. public float Y { get; private set; }
  14. public int IntX { get { return (int)X; } }
  15. public int IntY { get { return (int)Y; } }
  16. public float Length { get { return (float)Math.Sqrt(X * X + Y * Y); } }
  17. public Vector2D(float x, float y)
  18. {
  19. X = x;
  20. Y = y;
  21. }
  22. public Vector2D(Vector2D vec)
  23. {
  24. X = vec.X;
  25. Y = vec.Y;
  26. }
  27. public Vector2D(Point point)
  28. {
  29. X = point.X;
  30. Y = point.Y;
  31. }
  32. public Vector2D(PointF point)
  33. {
  34. X = point.X;
  35. Y = point.Y;
  36. }
  37. public float getDistanceTo(Vector2D point)
  38. {
  39. return (this - point).Length;
  40. }
  41. public float getAngleBetween(Vector2D vector)
  42. {
  43. return (float)Math.Acos(dotProduct(vector) / (Length * vector.Length));
  44. }
  45. public float dotProduct(Vector2D vector)
  46. {
  47. return X * vector.X + Y * vector.Y;
  48. }
  49. public float crossProduct(Vector2D v)
  50. {
  51. return X * v.Y - Y * v.X;
  52. }
  53. public Vector2D scale(Vector2D v)
  54. {
  55. return new Vector2D(X * v.X, Y * v.Y);
  56. }
  57. public bool isInBox(Vector2D corner1, Vector2D corner2)
  58. {
  59. float minX = Math.Min(corner1.X, corner2.X);
  60. float maxX = Math.Max(corner1.X, corner2.X);
  61. float minY = Math.Min(corner1.Y, corner2.Y);
  62. float maxY = Math.Max(corner1.Y, corner2.Y);
  63. return (minX <= X && X <= maxX && minY <= Y && Y <= maxY);
  64. }
  65. public bool isInBound() {
  66. return isInBound(Vector2D.Zero, Parameters.ImageMaxPixel);
  67. }
  68. public bool isInBound(Vector2D topLeft, Vector2D bottomRight)
  69. {
  70. return (X >= topLeft.X && X <= bottomRight.X && Y >= topLeft.Y && Y <= bottomRight.Y);
  71. }
  72. public Vector2D moveInBound(Vector2D inBoundDirection) {
  73. return moveInBound(Vector2D.Zero, Parameters.ImageMaxPixel, inBoundDirection);
  74. }
  75. public Vector2D moveInBound(Vector2D topLeft, Vector2D bottomRight, Vector2D inBoundDirection)
  76. {
  77. Vector2D pos = new Vector2D(X, Y);
  78. while (!pos.isInBound(topLeft, bottomRight))
  79. {
  80. pos += inBoundDirection;
  81. }
  82. return pos;
  83. }
  84. public Vector2D normalize()
  85. {
  86. float length = Length;
  87. return new Vector2D(X / length, Y / length);
  88. }
  89. public Vector2D getOrthogonal(bool side = true)
  90. {
  91. if (side)
  92. return new Vector2D(Y, -X);
  93. else
  94. return new Vector2D(-Y, X);
  95. }
  96. public Vector2D getInverse()
  97. {
  98. return new Vector2D(-X, -Y);
  99. }
  100. public Vector2D getAbsolute()
  101. {
  102. return new Vector2D(Math.Abs(X), Math.Abs(Y));
  103. }
  104. public Vector2D copy() {
  105. return new Vector2D(X, Y);
  106. }
  107. public override string ToString()
  108. {
  109. return "(" + X + "|" + Y + ")";
  110. }
  111. public static Vector2D operator *(float scalar, Vector2D vector)
  112. {
  113. return new Vector2D(scalar * vector.X, scalar * vector.Y);
  114. }
  115. public static Vector2D operator *(Vector2D vector, float scalar)
  116. {
  117. return new Vector2D(scalar * vector.X, scalar * vector.Y);
  118. }
  119. public static Vector2D operator /(Vector2D vector, float scalar)
  120. {
  121. return new Vector2D(vector.X / scalar, vector.Y / scalar);
  122. }
  123. public static Vector2D operator /(Vector2D vector1, Vector2D vector2)
  124. {
  125. return new Vector2D(vector1.X / vector2.X, vector1.Y / vector2.Y);
  126. }
  127. public static Vector2D operator +(Vector2D vector1, Vector2D vector2)
  128. {
  129. return new Vector2D(vector1.X + vector2.X, vector1.Y + vector2.Y);
  130. }
  131. public static Vector2D operator -(Vector2D vector1, Vector2D vector2)
  132. {
  133. return new Vector2D(vector1.X - vector2.X, vector1.Y - vector2.Y);
  134. }
  135. public static Vector2D mean(List<Vector2D> vectors)
  136. {
  137. Vector2D meanVector = new Vector2D(0, 0);
  138. foreach (Vector2D vector in vectors)
  139. {
  140. meanVector += vector;
  141. }
  142. return meanVector / vectors.Count;
  143. }
  144. public static implicit operator PointF(Vector2D vec)
  145. {
  146. return new PointF(vec.X, vec.Y);
  147. }
  148. public static implicit operator Point(Vector2D vec)
  149. {
  150. return new Point(vec.IntX, vec.IntY);
  151. }
  152. }
  153. }