Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 26, 2005, 8:26:49 PM (20 years ago)
Author:
bensch
Message:

orxonox/branches/physics: new definitions of particle-return-values

Location:
orxonox/branches/physics/src/lib/graphics/particles
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • orxonox/branches/physics/src/lib/graphics/particles/particle_emitter.cc

    r4274 r4307  
    3737   this->setSpread(angle);
    3838   this->setEmissionRate(emissionRate);
    39    this->setVelocity(velocity);
     39   this->setEmissionVelocity(velocity);
    4040
    4141   this->saveTime = 0.0;
     
    119119   you may want to use the animation class
    120120*/
    121 void ParticleEmitter::setVelocity(float velocity, float randomVelocity)
     121void ParticleEmitter::setEmissionVelocity(float velocity, float randomVelocity)
    122122{
    123123  this->velocity = velocity;
  • orxonox/branches/physics/src/lib/graphics/particles/particle_emitter.h

    r4274 r4307  
    3737  void setEmissionRate(float emissionRate);
    3838  void setSpread(float angle, float randomAngle = 0.0);
    39   void setVelocity(float velocity, float randomVelocity = 0.0);
     39  void setEmissionVelocity(float velocity, float randomVelocity = 0.0);
     40
     41  /** \returns the type of the emitter */
     42  inline EMITTER_TYPE getType(void) const { return this->type; };
     43  /** \returns the Size of the emitter */
     44  inline float getSize(void) const { return this->emitterSize; };
     45  /** \returns the emissionRate */
     46  inline float getEmissionRate(void) const { return this->emissionRate; };
     47  /** \returns the SpreadAngle of the emitter */
     48  inline float getSpread(void) { return this->angle; };
     49  /** \returns the EmissionVelocity of the emitter */
     50  inline float getEmissionVelocity(void) { return this->velocity; };
    4051
    4152  void debug(void);
  • orxonox/branches/physics/src/lib/graphics/particles/particle_system.h

    r4192 r4307  
    7878                GLfloat er, GLfloat eg, GLfloat eb, GLfloat ea);
    7979
     80  /** \returns the Type of the particles */
     81  inline PARTICLE_TYPE getType(void) const { return this->particleType; };
     82  /** \returns the Material that lies on this particles */
     83  inline const Material* getMaterial(void) const { return this->material; };
     84  /** \returns the inherit-speed-factor */
     85  inline float getInheritSpeed(void) const { return this->inheritSpeed; };
     86  /** \returns the lifespan of the particles */
     87  inline float getLifeSpan(void) const { return this->lifeSpan; };
     88  /** \returns the starting-radius of the particles */
     89  inline float getStartRadius(void) const { return this->startRadius; };
     90  /** \returns the end-radius of the particles */
     91  inline float getEndRadius(void) const { return this->endRadius; };
     92  /** \returns the conserve-factor of the particles */
     93  inline float getConserve(void) const { return this->conserve; };
     94  /** \returns the initial mass of the particles */
     95  inline float getMass(void) const { return this->initialMass; };
     96
    8097  void applyField(float dt, Field* field);
    8198
Note: See TracChangeset for help on using the changeset viewer.