Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2551 in orxonox.OLD for orxonox/trunk/src/coordinates.h


Ignore:
Timestamp:
Oct 11, 2004, 12:53:43 AM (20 years ago)
Author:
patrick
Message:

orxonox/trunk: minor changes - enhanced sc controll, fixed uncontrolled rotation effect, added some debug outputs for testing purposes, reformatted some src files from win style but not all

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/coordinates.h

    r2191 r2551  
    99#include "vector.h"
    1010
     11class Track;
     12
    1113//! Coordinates relative to track
    1214/**
     
    1618{
    1719  unsigned long part;   //!< ID of the track part the object is on
     20  Track* track;         //!< This is the current Track to which the Entity belongs to
    1821  float dist;           //!< The distance that has already been traveled on the track
    19   Vector pos;           //!< The position relative to the offset marked by the distance already covered
    20   Quaternion rot;         //!< The direction the object is heading (relative to track direction)
     22  Vector pos;           //!< The position relative to the offset marked by the distance already covered - this is mostly for user interaction/control
     23  Quaternion rot;       //!< The direction the object is heading (relative to track direction)
    2124} Location;
    2225
     
    2831{
    2932  Vector r;              //!< Absolute x/y/z coordinates
    30   Quaternion w;            //!< Absolute orientation
     33  Quaternion w;          //!< Absolute orientation
    3134} Placement;
    3235
Note: See TracChangeset for help on using the changeset viewer.