hglmandel/article/config.ymd

37 lines
1.4 KiB
Text
Raw Permalink Normal View History

2012-06-05 13:38:57 +00:00
-----
isHidden: false
menupriority: 1
kind: article
2012-06-15 14:48:41 +00:00
created_at: 2012-06-15T19:16:43+02:00
2012-06-15 10:26:24 +00:00
en: title: Haskell Progressive Example
2012-06-05 13:38:57 +00:00
en: subtitle: An OpenGL 3D extension of the Mandelbrot set
2012-06-15 10:26:24 +00:00
fr: title: Un example progressif avec Haskell
2012-06-05 13:38:57 +00:00
fr: subtitle: Une extension de l'ensemble de Mandelbrot en 3D et en OpenGL
author_name: Yann Esposito
author_uri: yannesposito.com
tags:
- Haskell
- programming
- functional
- tutorial
2012-06-15 10:26:24 +00:00
- fractal
2012-06-05 13:38:57 +00:00
-----
2012-06-10 22:34:44 +00:00
blogimage("BenoitBMandelbrot.jpg","The B in Benoît B. Mandelbrot stand for Benoît B. Mandelbrot")
2012-06-05 13:38:57 +00:00
begindiv(intro)
2012-06-15 10:26:24 +00:00
en: %tldr A progressive Haskell example.
en: A Mandelbrot set extended in 3D, rendered using OpenGL and coded with Haskell.
en: In the end the code will be very clean.
en: The significant stuff will be in a pure functional bubble.
2012-06-15 10:26:24 +00:00
en: The display details will be put in an external module playing the role of a wrapper.
en: Imperative language could also benefit from this functional organization.
2012-06-10 22:34:44 +00:00
fr: %tlal Un exemple progressif d'utilisation d'Haskell.
2012-06-15 10:26:24 +00:00
fr: Vous pourrez voir un ensemble de Mandelbrot étendu à la troisième dimension.
fr: De plus le code sera très propre.
fr: Les détails de rendu sont séparés dans un module externe.
fr: Le code descriptif intéressant est concentré dans un environnement pur et fonctionnel.
fr: Vous pouvez vous inspirer de ce code utilisant le paradigme fonctional dans tous les languages.
2012-06-05 13:38:57 +00:00