vid_us_rect.dart 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import 'package:vid/us/vid_us_point.dart';
  2. class VidUsRect {
  3. late double _left;
  4. late double _right;
  5. late double _top;
  6. late double _bottom;
  7. double get left => _left;
  8. double get right => _right;
  9. double get top => _top;
  10. double get bottom => _bottom;
  11. double get width => (_right - _left).abs();
  12. double get height => (_bottom - _top).abs();
  13. VidUsPoint get topLeft => new VidUsPoint(_left, _top);
  14. VidUsPoint get topRight => new VidUsPoint(_right, _top);
  15. VidUsPoint get bottomLeft => new VidUsPoint(_left, _bottom);
  16. VidUsPoint get bottomRight => new VidUsPoint(_right, _bottom);
  17. VidUsRect.xywh(double x, double y, double width, double height) {
  18. _left = topLeft.x;
  19. _top = topLeft.y;
  20. _right = _left + width;
  21. _bottom = _top + height;
  22. }
  23. VidUsRect.tlbr(VidUsPoint topLeft, VidUsPoint bottomRight) {
  24. _left = topLeft.x;
  25. _top = topLeft.y;
  26. _right = bottomRight.x;
  27. _bottom = bottomRight.y;
  28. }
  29. bool operator ==(other) {
  30. if (other is VidUsRect &&
  31. runtimeType == other.runtimeType &&
  32. _left == other._left &&
  33. _right == other._right &&
  34. _top == other._top &&
  35. _bottom == other._bottom) {
  36. return true;
  37. }
  38. return false;
  39. }
  40. @override
  41. int get hashCode =>
  42. _left.hashCode ^ _right.hashCode ^ _top.hashCode ^ _bottom.hashCode;
  43. }