Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9304 in orxonox.OLD for branches/proxy/src/lib/coord/p_node.h


Ignore:
Timestamp:
Jul 17, 2006, 1:42:41 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: virtual public and an ip class

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/proxy/src/lib/coord/p_node.h

    r8711 r9304  
    2020
    2121#include "base_object.h"
    22 #include "stdincl.h"
    2322#include "synchronizeable.h"
    2423
     
    7473
    7574//! Patent Node is a Engine to calculate the position of an Object in respect to the position of its parent.
    76 class PNode : virtual public BaseObject, virtual public Synchronizeable {
     75class PNode : virtual public BaseObject, public Synchronizeable {
    7776 public:
    7877  PNode (PNode* parent = PNode::getNullParent(), long nodeFlags = PNODE_PARENT_MODE_DEFAULT);
     
    112111  /** @returns the absolute position */
    113112  inline const Vector& getLastAbsCoor () const { return this->lastAbsCoordinate; };
    114  
     113
    115114  void shiftCoor (const Vector& shift);
    116115  void shiftCoor (float x, float y, float z) { this->shiftCoor(Vector(x, y, z)); };
Note: See TracChangeset for help on using the changeset viewer.