Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 9, 2009, 2:48:32 PM (15 years ago)
Author:
rgrieder
Message:

Renamed stupid omni_cast to multi_cast. It still eats about anything ;)

Location:
code/branches/pch/src/orxonox/objects
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pch/src/orxonox/objects/Scene.cc

    r3110 r3125  
    139139        {
    140140            CCOUT(2) << "Warning: Setting the negative world range to a very small value: "
    141                      << omni_cast<std::string>(range) << std::endl;
     141                     << multi_cast<std::string>(range) << std::endl;
    142142        }
    143143        if (this->hasPhysics())
     
    158158        {
    159159            CCOUT(2) << "Warning: Setting the positive world range to a very small value: "
    160                      << omni_cast<std::string>(range) << std::endl;
     160                     << multi_cast<std::string>(range) << std::endl;
    161161        }
    162162        if (this->hasPhysics())
     
    176176        this->gravity_ = gravity;
    177177        if (this->hasPhysics())
    178             this->physicalWorld_->setGravity(omni_cast<btVector3>(this->gravity_));
     178            this->physicalWorld_->setGravity(multi_cast<btVector3>(this->gravity_));
    179179    }
    180180
     
    187187            //       It would require further investigation to properly dertermine the right choices.
    188188            this->broadphase_      = new bt32BitAxisSweep3(
    189                 omni_cast<btVector3>(this->negativeWorldRange_), omni_cast<btVector3>(this->positiveWorldRange_));
     189                multi_cast<btVector3>(this->negativeWorldRange_), multi_cast<btVector3>(this->positiveWorldRange_));
    190190            this->collisionConfig_ = new btDefaultCollisionConfiguration();
    191191            this->dispatcher_      = new btCollisionDispatcher(this->collisionConfig_);
     
    193193
    194194            this->physicalWorld_   = new btDiscreteDynamicsWorld(this->dispatcher_, this->broadphase_, this->solver_, this->collisionConfig_);
    195             this->physicalWorld_->setGravity(omni_cast<btVector3>(this->gravity_));
     195            this->physicalWorld_->setGravity(multi_cast<btVector3>(this->gravity_));
    196196
    197197            // also set the collision callback variable.
  • code/branches/pch/src/orxonox/objects/collisionshapes/BoxCollisionShape.cc

    r3110 r3125  
    7272    btCollisionShape* BoxCollisionShape::createNewShape() const
    7373    {
    74         return new btBoxShape(omni_cast<btVector3>(this->halfExtents_));
     74        return new btBoxShape(multi_cast<btVector3>(this->halfExtents_));
    7575    }
    7676}
  • code/branches/pch/src/orxonox/objects/collisionshapes/CompoundCollisionShape.cc

    r3110 r3125  
    8989        {
    9090            // Only actually attach if we didn't pick a CompoundCollisionShape with no content
    91             btTransform transf(omni_cast<btQuaternion>(shape->getOrientation()), omni_cast<btVector3>(shape->getPosition()));
     91            btTransform transf(multi_cast<btQuaternion>(shape->getOrientation()), multi_cast<btVector3>(shape->getPosition()));
    9292            this->compoundShape_->addChildShape(transf, shape->getCollisionShape());
    9393
     
    134134        {
    135135            // Only actually attach if we didn't pick a CompoundCollisionShape with no content
    136             btTransform transf(omni_cast<btQuaternion>(shape->getOrientation()), omni_cast<btVector3>(shape->getPosition()));
     136            btTransform transf(multi_cast<btQuaternion>(shape->getOrientation()), multi_cast<btVector3>(shape->getPosition()));
    137137            this->compoundShape_->addChildShape(transf, shape->getCollisionShape());
    138138            it->second = shape->getCollisionShape();
  • code/branches/pch/src/orxonox/objects/collisionshapes/PlaneCollisionShape.cc

    r3110 r3125  
    7272    btCollisionShape* PlaneCollisionShape::createNewShape() const
    7373    {
    74         return new btStaticPlaneShape(omni_cast<btVector3>(this->normal_), this->offset_);
     74        return new btStaticPlaneShape(multi_cast<btVector3>(this->normal_), this->offset_);
    7575    }
    7676}
Note: See TracChangeset for help on using the changeset viewer.