Changeset 10185 in orxonox.OLD for branches/mount_points/src/lib/graphics
- Timestamp:
- Jan 6, 2007, 5:41:12 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/mount_points/src/lib/graphics/importer/model.h
r10184 r10185 102 102 /** adds a mounting point to the model @param up up vector @param forward forward vector @param center center vector */ 103 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; }104 { mountPointSkeleton mps; mps.up = up; mps.forward = forward; mps.center = center; mps.name = name; this->mountPoints.push_back(mps); } 105 105 106 106
Note: See TracChangeset
for help on using the changeset viewer.