Changeset 4836 in orxonox.OLD for orxonox/trunk/src/lib/particles/particle_emitter.h
- Timestamp:
- Jul 12, 2005, 12:33:16 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/particles/particle_emitter.h
r4746 r4836 1 1 /*! 2 2 \file particle_emitter.h 3 \briefDefinition of a ParticleEmitter3 * Definition of a ParticleEmitter 4 4 */ 5 5 … … 58 58 void setDirection(float x, float y, float z) { this->direction = Vector(x,y,z); }; //!< todo this should be done via PNODE 59 59 60 /** \returns the type of the emitter */60 /** @returns the type of the emitter */ 61 61 inline EMITTER_TYPE getType() const { return this->type; }; 62 /** \returns the Type as a const char * */62 /** @returns the Type as a const char * */ 63 63 const char* getTypeC() const; 64 /** \returns the Size of the emitter */64 /** @returns the Size of the emitter */ 65 65 inline float getSize() const { return this->emitterSize; }; 66 /** \returns the emissionRate */66 /** @returns the emissionRate */ 67 67 inline float getEmissionRate() const { return this->emissionRate; }; 68 /** \returns the inherit-speed-factor */68 /** @returns the inherit-speed-factor */ 69 69 inline float getInheritSpeed() const { return this->inheritSpeed; }; 70 /** \returns the SpreadAngle of the emitter */70 /** @returns the SpreadAngle of the emitter */ 71 71 inline float getSpread() const { return this->angle; }; 72 /** \returns the EmissionVelocity of the emitter */72 /** @returns the EmissionVelocity of the emitter */ 73 73 inline float getEmissionVelocity() const { return this->velocity; }; 74 /** \returns the EmissionMomentum of this emitter */74 /** @returns the EmissionMomentum of this emitter */ 75 75 inline float getEmissionMomentum() const { return this->momentum; }; 76 76
Note: See TracChangeset
for help on using the changeset viewer.