Changeset 8906 for code/branches/hud/src/modules/overlays
- Timestamp:
- Oct 26, 2011, 4:10:30 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/hud/src/modules/overlays/hud/HUDNavigation.cc
r8897 r8906 173 173 // Get Distance to HumanController and save it in the TextAreaOverlayElement. 174 174 int dist = listIt->second; 175 it->second.text_->setCaption ( multi_cast<std::string> ( dist ) ); 176 float textLength = multi_cast<std::string> ( dist ).size() * it->second.text_->getCharHeight() * 0.3f; 175 176 //it->second.text_->setCaption ( multi_cast<std::string> ( dist ) ); //display distance next to cursor 177 //float textLength = multi_cast<std::string> ( dist ).size() * it->second.text_->getCharHeight() * 0.3f; 178 179 it->second.text_->setCaption(it->first->getRVName()); //display name next to cursor 180 float textLength = it->first->getRVName().size() * it->second.text_->getCharHeight() * 0.3f; 177 181 178 182 // Transform to screen coordinates … … 191 195 else 192 196 outOfView = pos.x < -1.0 || pos.x > 1.0 || pos.y < -1.0 || pos.y > 1.0; 193 // Get Distance to HumanController and save it in the TextAreaOverlayElement.194 //it->second.text_->setCaption ( multi_cast<std::string> ( dist ) );195 it->second.text_->setCaption(it->first->getRVName()); //only for test purposes196 197 197 198 if ( outOfView )
Note: See TracChangeset
for help on using the changeset viewer.