- Timestamp:
- Jan 3, 2016, 9:28:44 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentationHS15/src/orxonox/controllers/SectionController.cc
r11026 r11030 192 192 case FormationMode::WALL: 193 193 { 194 targetRelativePosition = new Vector3 (-2 *this->spread_, 0, 0);194 targetRelativePosition = new Vector3 (-2.0f*this->spread_, 0, 0); 195 195 break; 196 196 } 197 197 case FormationMode::FINGER4: 198 198 { 199 targetRelativePosition = new Vector3 (-2 *this->spread_, 0,this->spread_);199 targetRelativePosition = new Vector3 (-2.0f*this->spread_, 0, 1.0f*this->spread_); 200 200 break; 201 201 } … … 203 203 case FormationMode::DIAMOND: 204 204 { 205 targetRelativePosition = new Vector3 (-2 *this->spread_, 0, this->spread_);205 targetRelativePosition = new Vector3 (-2.0f*this->spread_, 0, 1.0f*this->spread_); 206 206 break; 207 207 }
Note: See TracChangeset
for help on using the changeset viewer.