Wired-0.2: Layout.hs
module Layout
( Transformable (..)
, rotate
, Layout
, LayoutT
, black, white, grey, red, green, blue
, renderLayout
, renderLayoutT
, MonadLayout
, space
, rightwards
, leftwards
, upwards
, downwards
, rightwards'
, leftwards'
, upwards'
, downwards'
, unplaced
, stacked
, translate
) where
-- Layout is supposed to be used in specialized libraries where the s and b
-- parameters to are hardcoded to something useful. This module exports
-- functions that can be used in any such specialization.
import Layout.Internal