Line2.cs 474 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CommonLang.Geometry
  6. {
  7. public struct Line2 : IEquatable<Line2>
  8. {
  9. public Vector2 P;
  10. public Vector2 Q;
  11. public Line2(Vector2 p, Vector2 q)
  12. {
  13. this.P = p;
  14. this.Q = q;
  15. }
  16. public bool Equals(Line2 other)
  17. {
  18. return this.P.Equals(other.P) && this.Q.Equals(other.Q);
  19. }
  20. }
  21. }