Quadrangle
data class Quadrangle(val topLeft: Point = Point(), val topRight: Point = Point(), val bottomLeft: Point = Point(), val bottomRight: Point = Point()) : Parcelable
The quadrangle used to represent document borders. It consists of four points in a specific order: Top Left, Top Right, Bottom Left, Bottom Right. By default, an empty quadrangle is created, meaning document detection has not been run, or it has detected no document in the image.
The primary constructor exposes each normalized corner as an immutable Point.