Changes between Version 2 and Version 3 of WikiStart
- Timestamp:
- Mar 5, 2010, 1:43:55 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v2 v3 1 1 = Gloss = 2 3 2 Gloss 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. 4 3 4 == Download == 5 6 If you have cabal installed you should be able to do: 7 {{{ 8 cabal install gloss 9 cabal install gloss-examples 10 }}} 11 12 Otherwise: 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 21 Then the same for `gloss-examples` 22 5 23 == 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. 24 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. Its main goal is to allow total beginners to get something working with a minimum of fuss. 25 26 == Examples == 27