----------------------------------------------------------------------------- -- | -- Module : Math.Geometry.TriGrid -- Copyright : (c) Amy de Buitléir 2012 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental -- Portability : portable -- -- A regular arrangement of triangular tiles. -- The userguide, with illustrations, is available at -- . -- Also see @Math.Geometry.Grid@ for examples of how to use this class. -- ----------------------------------------------------------------------------- {-# LANGUAGE UnicodeSyntax, MultiParamTypeClasses, TypeSynonymInstances, FlexibleInstances #-} module Math.Geometry.Grid.Triangular ( -- * Unbounded grid with triangular tiles UnboundedTriGrid, -- * Triangular grid with triangular tiles TriTriGrid, triTriGrid, -- * Parallelogram-shaped grid with triangular tiles ParaTriGrid, paraTriGrid, -- * Rectangular grid with triangular tiles RectTriGrid, rectTriGrid, -- * Toroidal grid with triangular tiles TorTriGrid, torTriGrid ) where import Math.Geometry.Grid.TriangularInternal (UnboundedTriGrid, TriTriGrid, triTriGrid, ParaTriGrid, paraTriGrid, RectTriGrid, rectTriGrid, TorTriGrid, torTriGrid)