Changeset 8234 for code/trunk/src/modules
- Timestamp:
- Apr 12, 2011, 5:10:26 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/designtools/SkyboxGenerator.cc
r8232 r8234 189 189 std::pair<int, int> rotate = this->rotations_[this->faceCounter_]; 190 190 if(rotate.first != 0) 191 entity->yaw(Degree( rotate.first));191 entity->yaw(Degree((float)rotate.first)); 192 192 if(rotate.second != 0) 193 entity->pitch(Degree( rotate.second));193 entity->pitch(Degree((float)rotate.second)); 194 194 195 195 COUT(4) << "Created face number " << this->faceCounter_ << "." << endl;
Note: See TracChangeset
for help on using the changeset viewer.