File: Draw.hs

package info (click to toggle)
haskell-hgl 3.1-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 432 kB
  • ctags: 12
  • sloc: haskell: 2,585; makefile: 60; sh: 22
file content (46 lines) | stat: -rw-r--r-- 1,478 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
-----------------------------------------------------------------------------
-- |
-- Module      :  Graphics.HGL.Draw
-- Copyright   :  (c) Alastair Reid, 1999-2003
-- License     :  BSD-style (see the file libraries/base/LICENSE)
--
-- Maintainer  :  libraries@haskell.org
-- Stability   :  provisional
-- Portability :  non-portable (requires concurrency)
--
-- Drawing in a simple graphics library.
--
-----------------------------------------------------------------------------

module Graphics.HGL.Draw
	(
	-- * Graphics
	-- | The type 'Graphic', which represents an abstract drawing,
	-- is actually a special case of a 'Draw' monad.
	  module Graphics.HGL.Draw.Monad

	-- * Graphical objects
	-- | These are ways of constructing values of type 'Graphic'.
	, module Graphics.HGL.Draw.Picture
	, module Graphics.HGL.Draw.Text
	, module Graphics.HGL.Draw.Region

	-- * Graphical attributes
	-- | These are used to alter the above drawings.
	-- Brushes are used for filling shapes, pens for drawing lines.
	, module Graphics.HGL.Draw.Brush
	, module Graphics.HGL.Draw.Pen
	, module Graphics.HGL.Draw.Font
	) where

import Graphics.HGL.Draw.Monad
import Graphics.HGL.Draw.Picture
import Graphics.HGL.Draw.Text
import Graphics.HGL.Draw.Region
import Graphics.HGL.Draw.Brush
import Graphics.HGL.Draw.Pen
import Graphics.HGL.Draw.Font

----------------------------------------------------------------
-- The end
----------------------------------------------------------------