- Timestamp:
- Dec 14, 2008, 12:25:13 AM (16 years ago)
- Location:
- code/branches/physics/src/orxonox/objects/collisionshapes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/physics/src/orxonox/objects/collisionshapes/CollisionShape.cc
r2429 r2433 100 100 void CollisionShape::setScale3D(const Vector3& scale) 101 101 { 102 ThrowException(NotImplemented, "Cannot set the scale of a collision shape: Not yet implemented."); 103 this->updateParent(); 102 CCOUT(2) << "Warning: Cannot set the scale of a collision shape: Not yet implemented." << std::endl; 104 103 } 105 104 106 105 void CollisionShape::setScale(float scale) 107 106 { 108 ThrowException(NotImplemented, "Cannot set the scale of a collision shape: Not yet implemented."); 109 this->updateParent(); 107 CCOUT(2) << "Warning: Cannot set the scale of a collision shape: Not yet implemented." << std::endl; 110 108 } 111 109 -
code/branches/physics/src/orxonox/objects/collisionshapes/CompoundCollisionShape.cc
r2423 r2433 72 72 if (this->childShapes_.find(shape) != this->childShapes_.end()) 73 73 { 74 ThrowException(NotImplemented, "Warning: Attaching a CollisionShape twice is not yet supported.");74 CCOUT(2) << "Warning: Attaching a CollisionShape twice is not yet supported." << std::endl; 75 75 return; 76 76 }
Note: See TracChangeset
for help on using the changeset viewer.