00001 /* Copyright (c) 2010(Hennequin Thibault) Permission is hereby granted, free of charge, 00002 to any person obtaining a copy of this software and associated documentation files (the "Software"), 00003 to deal in the Software without restriction, including without limitation the rights to use, copy, 00004 modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, 00005 and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 00006 The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 00007 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, 00008 INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00009 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 00010 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 00011 DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 00012 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ 00013 00014 #ifndef FRACTAL_H 00015 #define FRACTAL_H 00016 00017 /* List des différents fractales */ 00018 enum Fractal 00019 { 00020 Fractal_MandelBrot = 0, 00021 Fractal_BuddhaBrot, 00022 Fractal_Julia, 00023 00024 Fractal_MandelBrot_OpenGL, 00025 Fractal_Julia_OpenGL, 00026 00027 Fractal_max 00028 }; 00029 00030 00031 #endif