Changes between Version 2 and Version 3 of WikiStart


Ignore:
Timestamp:
Mar 5, 2010, 1:43:55 AM (14 years ago)
Author:
Ben Lippmeier
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v2 v3  
    11= Gloss =
    2 
    32Gloss hides the pain of drawing simple vector graphics behind a nice data type and a few display functions. Gloss uses OpenGL and GLUT under the hood, but you won't have to worry about any of that. Get something cool on the screen in under 10 minutes.
    43
     4== Download ==
     5
     6If you have cabal installed you should be able to do:
     7 {{{
     8 cabal install gloss
     9 cabal install gloss-examples
     10 }}}
     11
     12Otherwise:
     13 {{{
     14 darcs get http://code.haskell.org/gloss/gloss-head
     15 cd gloss-head
     16 runhaskell Setup configure --user
     17 runhaskell Setup build
     18 runhaskell Setup install
     19 }}}
     20
     21Then the same for `gloss-examples`
     22
    523== History ==
    6 Gloss is a fork and cleanup of ANUPlot, which has been used for teaching first year computer science at the [http://cs.anu.edu.au ANU] for the last few years.
     24Gloss is a fork and cleanup of ANUPlot, which has been used for teaching first year computer science at the [http://cs.anu.edu.au ANU] for the last few years. Its main goal is to allow total beginners to get something working with a minimum of fuss.
     25
     26== Examples ==
     27