image_boundary.dart 403 B

12345678910111213141516171819202122232425
  1. import 'package:fis_measure/interfaces/date_types/point.dart';
  2. /// 图像边界
  3. abstract class IImageBoundary {
  4. /// 边界角数据集合
  5. List<DPoint> get points;
  6. /// 左上角
  7. DPoint get topLeft;
  8. /// 左下角
  9. DPoint get bottomLeft;
  10. /// 右下角
  11. DPoint get bottomRight;
  12. /// 右上角
  13. DPoint get topRight;
  14. /// 宽度
  15. double get width;
  16. /// 高度
  17. double get height;
  18. }