Changeset 3301 for code/trunk/src/orxonox/objects/worldentities
- Timestamp:
- Jul 18, 2009, 4:03:59 PM (15 years ago)
- Location:
- code/trunk/src/orxonox/objects/worldentities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/objects/worldentities/ParticleEmitter.h
r3300 r3301 66 66 { this->LOD_ = static_cast<LODParticle::Value>(level); this->LODchanged(); } 67 67 inline unsigned int getLODxml() const 68 { return (unsigned int)this->LOD_; }68 { return static_cast<unsigned int>(this->LOD_); } 69 69 70 70 void sourceChanged(); -
code/trunk/src/orxonox/objects/worldentities/WorldEntity.h
r3196 r3301 148 148 inline void setScale3D(float x, float y, float z) 149 149 { this->setScale3D(Vector3(x, y, z)); } 150 const Vector3& getScale3D( void) const;150 const Vector3& getScale3D() const; 151 151 const Vector3& getWorldScale3D() const; 152 152 … … 457 457 inline const Quaternion& WorldEntity::getOrientation() const 458 458 { return this->node_->getOrientation(); } 459 inline const Vector3& WorldEntity::getScale3D( void) const459 inline const Vector3& WorldEntity::getScale3D() const 460 460 { return this->node_->getScale(); } 461 461 #endif
Note: See TracChangeset
for help on using the changeset viewer.