| 123456789101112131415161718192021222324252627 |
- #include "ParticleEmitter.h"
- #include "Renderer.h"
- //=====================================================================================================================================
- // =
- //=====================================================================================================================================
- void ParticleEmitter::Particle::render()
- {
- glPushMatrix();
- R::multMatrix( transformationWspace );
- glBegin( GL_POINTS );
- glVertex3fv( &(Vec3(0.0))[0] );
- glEnd();
- glPopMatrix();
- }
- //=====================================================================================================================================
- // =
- //=====================================================================================================================================
- void ParticleEmitter::init( const char* filename )
- {
- }
|