/*!\file lSystem.h * * \author SOUPLET Antoine * \version 1.0 * \date 10-01-2012 * * \brief Fichier contenant les entêtes des fonctions relatives à la structure L-System * */ #include "stack.h" #include "point.h" #include #include #include "functionFile.h" #ifndef _lSystem_h_ #define _lSystem_h_ /*!\def PI * * \author SOUPLET Antoine * \version 1.0 * \date 12-01-2012 * * \brief Définit une constante correspondant à la constante mathématique Pi * */ #define PI 3.14159265 /*!\def i_tabSize * * \author SOUPLET Antoine * \version 1.0 * \date 12-01-2012 * * \brief Définit une constante correspondant à la taille d'un tableau * */ #define i_tabSize 10000000 /*!\typedef Lsystem * * \author SOUPLET Antoine * \version 1.0 * \date 12-01-2012 * * \brief Définition du type uCharDouble correspondant à la structure uCharDouble * */ typedef struct Lsystem Lsystem; /*!\struct Lsystem * * \author SOUPLET Antoine * \version 1.0 * \date 09-01-2012 * * \brief Structure désignant les fractales de type L-System * */ struct Lsystem { SDL_Surface *surf_screen;/*!