Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 6, 2007, 5:03:27 PM (17 years ago)
Author:
patrick
Message:

extended model again, added mounting point generation procedures now working on a nicer interface

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/mount_points/src/world_entities/mount_point.cc

    r10147 r10184  
    3333 * construct
    3434 */
    35 MountPoint::MountPoint ()
     35MountPoint::MountPoint (const Vector& up, const Vector& forward, const Vector& center, const std::string& name)
    3636{
     37
     38  this->name = name;
     39  this->setAbsCoor( center);
     40  this->setAbsDir( Quaternion(forward, up));
     41
    3742  this->init();
    3843}
Note: See TracChangeset for help on using the changeset viewer.