Point.cs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  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.Runtime.Serialization;
  7. namespace CommonLang.Geometry
  8. {
  9. /// <summary>
  10. /// Describes a 2D-point.
  11. /// </summary>
  12. public struct Point : IEquatable<Point>
  13. {
  14. #region Private Fields
  15. private static readonly Point zeroPoint = new Point();
  16. #endregion
  17. #region Public Fields
  18. /// <summary>
  19. /// The x coordinate of this <see cref="Point"/>.
  20. /// </summary>
  21. public int X;
  22. /// <summary>
  23. /// The y coordinate of this <see cref="Point"/>.
  24. /// </summary>
  25. public int Y;
  26. #endregion
  27. #region Properties
  28. /// <summary>
  29. /// Returns a <see cref="Point"/> with coordinates 0, 0.
  30. /// </summary>
  31. public static Point Zero
  32. {
  33. get { return zeroPoint; }
  34. }
  35. #endregion
  36. #region Internal Properties
  37. internal string DebugDisplayString
  38. {
  39. get
  40. {
  41. return string.Concat(
  42. this.X.ToString(), " ",
  43. this.Y.ToString()
  44. );
  45. }
  46. }
  47. #endregion
  48. #region Constructors
  49. /// <summary>
  50. /// Constructs a point wit X and Y from two values.
  51. /// </summary>
  52. /// <param name="x">The x coordinate in 2d-space.</param>
  53. /// <param name="y">The y coordinate in 2d-space.</param>
  54. public Point(int x, int y)
  55. {
  56. this.X = x;
  57. this.Y = y;
  58. }
  59. /// <summary>
  60. /// Constructs a point with X and Y set to the same value.
  61. /// </summary>
  62. /// <param name="value">The x and y coordinates in 2d-space.</param>
  63. public Point(int value)
  64. {
  65. this.X = value;
  66. this.Y = value;
  67. }
  68. #endregion
  69. #region Operators
  70. /// <summary>
  71. /// Adds two points.
  72. /// </summary>
  73. /// <param name="value1">Source <see cref="Point"/> on the left of the add sign.</param>
  74. /// <param name="value2">Source <see cref="Point"/> on the right of the add sign.</param>
  75. /// <returns>Sum of the points.</returns>
  76. public static Point operator +(Point value1, Point value2)
  77. {
  78. return new Point(value1.X + value2.X, value1.Y + value2.Y);
  79. }
  80. /// <summary>
  81. /// Subtracts a <see cref="Point"/> from a <see cref="Point"/>.
  82. /// </summary>
  83. /// <param name="value1">Source <see cref="Point"/> on the left of the sub sign.</param>
  84. /// <param name="value2">Source <see cref="Point"/> on the right of the sub sign.</param>
  85. /// <returns>Result of the subtraction.</returns>
  86. public static Point operator -(Point value1, Point value2)
  87. {
  88. return new Point(value1.X - value2.X, value1.Y - value2.Y);
  89. }
  90. /// <summary>
  91. /// Multiplies the components of two points by each other.
  92. /// </summary>
  93. /// <param name="value1">Source <see cref="Point"/> on the left of the mul sign.</param>
  94. /// <param name="value2">Source <see cref="Point"/> on the right of the mul sign.</param>
  95. /// <returns>Result of the multiplication.</returns>
  96. public static Point operator *(Point value1, Point value2)
  97. {
  98. return new Point(value1.X * value2.X, value1.Y * value2.Y);
  99. }
  100. /// <summary>
  101. /// Divides the components of a <see cref="Point"/> by the components of another <see cref="Point"/>.
  102. /// </summary>
  103. /// <param name="source">Source <see cref="Point"/> on the left of the div sign.</param>
  104. /// <param name="divisor">Divisor <see cref="Point"/> on the right of the div sign.</param>
  105. /// <returns>The result of dividing the points.</returns>
  106. public static Point operator /(Point source, Point divisor)
  107. {
  108. return new Point(source.X / divisor.X, source.Y / divisor.Y);
  109. }
  110. /// <summary>
  111. /// Compares whether two <see cref="Point"/> instances are equal.
  112. /// </summary>
  113. /// <param name="a"><see cref="Point"/> instance on the left of the equal sign.</param>
  114. /// <param name="b"><see cref="Point"/> instance on the right of the equal sign.</param>
  115. /// <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  116. public static bool operator ==(Point a, Point b)
  117. {
  118. return a.Equals(b);
  119. }
  120. /// <summary>
  121. /// Compares whether two <see cref="Point"/> instances are not equal.
  122. /// </summary>
  123. /// <param name="a"><see cref="Point"/> instance on the left of the not equal sign.</param>
  124. /// <param name="b"><see cref="Point"/> instance on the right of the not equal sign.</param>
  125. /// <returns><c>true</c> if the instances are not equal; <c>false</c> otherwise.</returns>
  126. public static bool operator !=(Point a, Point b)
  127. {
  128. return !a.Equals(b);
  129. }
  130. #endregion
  131. #region Public methods
  132. /// <summary>
  133. /// Compares whether current instance is equal to specified <see cref="Object"/>.
  134. /// </summary>
  135. /// <param name="obj">The <see cref="Object"/> to compare.</param>
  136. /// <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  137. public override bool Equals(object obj)
  138. {
  139. return (obj is Point) && Equals((Point)obj);
  140. }
  141. /// <summary>
  142. /// Compares whether current instance is equal to specified <see cref="Point"/>.
  143. /// </summary>
  144. /// <param name="other">The <see cref="Point"/> to compare.</param>
  145. /// <returns><c>true</c> if the instances are equal; <c>false</c> otherwise.</returns>
  146. public bool Equals(Point other)
  147. {
  148. return ((X == other.X) && (Y == other.Y));
  149. }
  150. /// <summary>
  151. /// Gets the hash code of this <see cref="Point"/>.
  152. /// </summary>
  153. /// <returns>Hash code of this <see cref="Point"/>.</returns>
  154. public override int GetHashCode()
  155. {
  156. return X ^ Y;
  157. }
  158. /// <summary>
  159. /// Returns a <see cref="String"/> representation of this <see cref="Point"/> in the format:
  160. /// {X:[<see cref="X"/>] Y:[<see cref="Y"/>]}
  161. /// </summary>
  162. /// <returns><see cref="String"/> representation of this <see cref="Point"/>.</returns>
  163. public override string ToString()
  164. {
  165. return "{X:" + X + " Y:" + Y + "}";
  166. }
  167. /// <summary>
  168. /// Gets a <see cref="Vector2"/> representation for this object.
  169. /// </summary>
  170. /// <returns>A <see cref="Vector2"/> representation for this object.</returns>
  171. public Vector2 ToVector2()
  172. {
  173. return new Vector2(X, Y);
  174. }
  175. #endregion
  176. }
  177. }