Changeset 3192 for code/branches/pch/src/orxonox/interfaces
- Timestamp:
- Jun 18, 2009, 10:00:15 AM (16 years ago)
- Location:
- code/branches/pch/src/orxonox/interfaces
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/orxonox/interfaces/RadarViewable.cc
r3182 r3192 126 126 //Vector3 v = this->getRVWorldPosition(); 127 127 //this->line_->setPoint(1, Vector3(0,v.y,0) ); 128 this->line_->setPoint(1, Vector3( 0, (int) -Map::getSingletonPtr()->movablePlane_->getDistance( this->getRVWorldPosition() ) ,0 ));128 this->line_->setPoint(1, Vector3( 0, static_cast<float>(static_cast<int>( -Map::getSingletonPtr()->movablePlane_->getDistance( this->getRVWorldPosition() ) ) ) ,0 )); 129 129 this->line_->update(); 130 130 if( Map::getSingletonPtr()->playerShipNode_ ) -
code/branches/pch/src/orxonox/interfaces/RadarViewable.h
r3182 r3192 34 34 #include <string> 35 35 #include <cassert> 36 #include <OgrePrerequisites.h>37 36 38 37 #include "util/Math.h" 38 #include "util/OgreForwardRefs.h" 39 39 #include "core/OrxonoxClass.h" 40 40
Note: See TracChangeset
for help on using the changeset viewer.