Changeset 10201 in orxonox.OLD for branches/mount_points/src/lib/graphics
- Timestamp:
- Jan 10, 2007, 11:14:32 AM (18 years ago)
- Location:
- branches/mount_points/src/lib/graphics/importer
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/mount_points/src/lib/graphics/importer/model.cc
r9869 r10201 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 PRINTF(0)("added mount point\n"); 101 102 mountPointSkeleton mps; 103 mps.up = up; 104 mps.forward = forward; 105 mps.center = center; 106 mps.name = name; 107 108 this->mountPoints.push_back(mps); 109 PRINTF(0)(" size: %i\n", this->mountPoints.size()); 110 } -
branches/mount_points/src/lib/graphics/importer/model.h
r10185 r10201 100 100 /** @returns a list of mounting points */ 101 101 inline const mpList& getMountPoints() const { return this->mountPoints; } 102 /** adds a mounting point to the model @param up up vector @param forward forward vector @param center center vector */ 103 inline void addMountPoint(const Vector& up, const Vector& forward, const Vector& center, const std::string& name) 104 { mountPointSkeleton mps; mps.up = up; mps.forward = forward; mps.center = center; mps.name = name; this->mountPoints.push_back(mps); } 102 void addMountPoint(const Vector& up, const Vector& forward, const Vector& center, const std::string& name); 105 103 106 104
Note: See TracChangeset
for help on using the changeset viewer.