Quad constructor

const Quad({
  1. required ScanPoint topLeft,
  2. required ScanPoint topRight,
  3. required ScanPoint bottomRight,
  4. required ScanPoint bottomLeft,
})

Creates a quad from four explicit corners.

Implementation

const Quad({
  required this.topLeft,
  required this.topRight,
  required this.bottomRight,
  required this.bottomLeft,
});