~jaro/balkon

ref: 229c02cd9b6458d330023a8ca56af358c376b2ac balkon/lib/Data/Text/ParagraphLayout/Rect.hs -rw-r--r-- 384 bytes
229c02cdJaro Add .editorconfig. 1 year, 2 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-- | 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
    ,union
    ,width
    ,x_max
    ,x_min
    ,x_terminus
    ,y_max
    ,y_min
    ,y_terminus
    )
where

import Data.Text.ParagraphLayout.Internal.Rect