Changeset 7184 for code/trunk/src/modules
- Timestamp:
- Aug 18, 2010, 9:46:16 PM (14 years ago)
- Location:
- code/trunk/src/modules
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/designtools/CreateStars.cc
r7163 r7184 38 38 { 39 39 CreateFactory(CreateStars); 40 41 static const float pi = 3.14159265359f;42 40 43 41 CreateStars::CreateStars(BaseObject* creator) : BaseObject(creator) … … 90 88 while(1) 91 89 { 92 phi = rnd(2* pi);93 teta = rnd( pi);90 phi = rnd(2*math::pi); 91 teta = rnd(math::pi); 94 92 float random = rnd(1); 95 93 if(sin(teta)>random) break; -
code/trunk/src/modules/overlays/hud/HUDRadar.cc
r7163 r7184 174 174 // calc position on radar... 175 175 Vector2 coord = get2DViewcoordinates(this->owner_->getPosition(), this->owner_->getOrientation() * WorldEntity::FRONT, this->owner_->getOrientation() * WorldEntity::UP, wePointer->getWorldPosition()); 176 coord *= Ogre::Math::PI/ 3.5f; // small adjustment to make it fit the texture176 coord *= math::pi / 3.5f; // small adjustment to make it fit the texture 177 177 it->second->setPosition((1.0f + coord.x - size) * 0.5f, (1.0f - coord.y - size) * 0.5f); 178 178 it->second->show();
Note: See TracChangeset
for help on using the changeset viewer.