Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 11, 2005, 12:55:48 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: setClassID implemented in all files

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/physics/physics_interface.cc

    r4558 r4597  
    3535/**
    3636   \brief standard constructor
    37 */
     37 */
    3838PhysicsInterface::PhysicsInterface (void* objectPointer)
    3939{
     40  this->setClassID(CL_PHYSICS_INTERFACE, "PhysicsInterface");
    4041  this->objectPointer = objectPointer;
    4142
    42   //   this->setClassName ("PhysicsInterface");
    43    this->mass = 1;
    44    this->massChildren = 0;
    45    this->forceSum = Vector(0, 0, 0);
    46    this->bForceApplied = false;
     43  this->mass = 1;
     44  this->massChildren = 0;
     45  this->forceSum = Vector(0, 0, 0);
     46  this->bForceApplied = false;
    4747
    4848   PhysicsEngine::getInstance()->addPhysicsInterface(this);
Note: See TracChangeset for help on using the changeset viewer.