~jaro/balkon

ref: 4504fe007d59470755b97c17bb6c7e33ca1fd70f balkon/lib/Data/Text/ParagraphLayout/Rect.hs -rw-r--r-- 383 bytes
4504fe00Jaro Fix style: long lines. 1 year, 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- | 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
    )
where

import Data.Text.ParagraphLayout.Internal.Rect