12345678910111213141516171819202122232425 |
- import 'package:fis_measure/interfaces/date_types/point.dart';
- /// Describes the width, height, and point origin of a image area.
- abstract class IImageBoundary {
- // Data Members
- List<DPoint> get points;
- /// Gets the position of the top-left corner of the Boundary.
- DPoint get topLeft;
- /// Gets the position of the bottom-right corner of the Boundary.
- DPoint get bottomLeft;
- /// Gets the position of the bottom-left corner of the Boundary.
- DPoint get bottomRight;
- /// Gets the position of the top-right corner of the Boundary.
- DPoint get topRight;
- /// Gets the width of the image.
- double get width;
- /// Gets the height of the image.
- double get height;
- }
|