-- | Representation of an axis-aligned rectangle on a 2D plane, with one of its -- corners being a designated origin point. module Data.Text.ParagraphLayout.Rect ( Rect (Rect, x_origin, y_origin, x_size, y_size) , height , width , x_max , x_min , x_terminus , y_max , y_min , y_terminus , union , unionMany , unionMany1 , Bias (LL, LH, HL, HH) ) where import Data.Text.ParagraphLayout.Internal.Rect