gridbox-0.3.0.0: A grid box model

Safe HaskellSafe
LanguageHaskell2010

GridBox.Grid

Description

Grid of rows

Synopsis

Documentation

type Grid = [Row] Source #

A grid of rows.

createGrid :: (Double, Double) -> Double -> Double -> Double -> Double -> Grid Source #

Create a grid with given size width, height, x- and y-offset.

makeGrid :: [Int] -> [Int] -> (Double, Double) -> Double -> Double -> Grid Source #

Create a grid with given List of row- and col-indexes, size, x- and y-offset.