vid_us_point.dart 392 B

123456789101112131415161718192021222324
  1. class VidUsPoint {
  2. double _x;
  3. double _y;
  4. double get x => _x;
  5. double get y => _y;
  6. VidUsPoint(this._x, this._y);
  7. bool operator ==(other) {
  8. if (other is VidUsPoint &&
  9. runtimeType == other.runtimeType &&
  10. _x == other._x &&
  11. _y == other._y) {
  12. return true;
  13. }
  14. return false;
  15. }
  16. @override
  17. int get hashCode => _x.hashCode ^ _y.hashCode;
  18. }