Changeset 10314 in orxonox.OLD for trunk/src/lib/graphics/importer/model.cc
- Timestamp:
- Jan 24, 2007, 12:45:39 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/graphics/importer/model.cc
r9869 r10314 17 17 18 18 #include "model.h" 19 19 #include "debug.h" 20 20 #include "glincl.h" 21 21 … … 88 88 glEnd(); 89 89 } 90 91 92 /** 93 * adds a mounting point to the model 94 * @param up up vector 95 * @param forward forward vector 96 * @param center center vector 97 */ 98 void Model::addMountPoint(const Vector& up, const Vector& forward, const Vector& center, const std::string& name) 99 { 100 mountPointSkeleton mps; 101 mps.up = up; 102 mps.forward = forward; 103 mps.center = center; 104 mps.name = name; 105 106 this->mountPoints.push_back(mps); 107 }
Note: See TracChangeset
for help on using the changeset viewer.