Files Classes Functions Hierarchy
00001 #ifndef PARTICLEDISP_H 00002 #define PARTICLEDISP_H 00003 00004 #include <GL/glut.h> 00005 #include <GL/glu.h> 00006 #include <GL/gl.h> 00007 00008 #include <particle.h> 00009 00010 00011 00012 class particledisp 00013 { 00014 GLUquadric * const quadric; 00015 int const slices; 00016 int const loops; 00017 public: 00018 00019 particledisp 00020 ( 00021 GLUquadric * const quadric_, 00022 int const slices_, 00023 int const loops_ 00024 ); 00025 00026 void draw(particle const & x) const; 00027 00028 }; 00029 00030 00031 00032 #endif 00033
1.5.8