~alcinnz/CatTrap

ref: d0a8a7d61e0a8340adcb597e0c8f94553dbaff81 CatTrap/Graphics/Layout/Flow.hs -rw-r--r-- 464 bytes
d0a8a7d6 — Adrian Cochrane Finish drafting shunting yard interpreter for calc(). 1 year, 8 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
module Graphics.Layout.Flow where

import Graphics.Layout.Box
import Stylist.Tree (StyleTree(..))

sizeBoundFlow :: PaddedBox Length -> [PaddedBox Length] -> PaddedBox Length
sizeFlow :: PaddedBox Double -> PaddedBox Length -> PaddedBox Double
positionFlow :: PaddedBox Double -> [PaddedBox Double] -> [Size Double]
layoutFlow :: PaddedBox Double -> PaddedBox Length -> [PaddedBox Length] -> Bool ->
        [(PaddedBox Double, [(Size Double, PaddedBox Double)])]