Changeset 10311 in orxonox.OLD
- Timestamp:
- Jan 23, 2007, 11:43:01 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/mount_points/src/lib/graphics/importer/static_model.cc
r10310 r10311 190 190 xAxis = axis2; 191 191 192 xAxis.debug(); 193 194 192 193 // find the 2nd longest axis to be y-axis 195 194 if( xAxis.len() > axis1.len() && yAxis.len() < axis1.len()) 196 195 yAxis = axis1; … … 198 197 yAxis = axis2; 199 198 200 yAxis.debug();201 199 202 200 // needed... no explanation here.. … … 204 202 zAxis = yAxis; 205 203 204 // find the shortest axis to be z-axis 206 205 if( yAxis.len() > axis1.len() ) 207 206 zAxis = axis1; 208 207 if( yAxis.len() > axis2.len() ) 209 208 zAxis = axis2; 210 211 zAxis.debug();212 213 209 } 214 210 215 211 // now add the mount point 216 // this->addMountPoint( up, forward, center, groupName);212 this->addMountPoint( zAxis, yAxis, center, groupName); 217 213 } 218 214 }
Note: See TracChangeset
for help on using the changeset viewer.