Changeset 7292 for code/branches/doc/src/orxonox
- Timestamp:
- Aug 31, 2010, 5:40:59 PM (14 years ago)
- Location:
- code/branches/doc/src/orxonox/worldentities
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/doc/src/orxonox/worldentities/WorldEntity.cc
r7163 r7292 267 267 @brief 268 268 Attaches this object to a parent SceneNode. 269 @ Remarks269 @remarks 270 270 Only use this method if you know exactly what you're doing! 271 271 Normally, attaching works internally by attaching WE's. … … 282 282 @brief 283 283 Detaches this object from a parent SceneNode. 284 @ Remarks284 @remarks 285 285 Only use this method if you know exactly what you're doing! 286 286 Normally, attaching works internally by attaching WE's. … … 355 355 Attaches a child WorldEntity to this object. This calls notifyBeingAttached() 356 356 of the child WE. 357 @ Note357 @note 358 358 The collision shape of the child object gets attached nevertheless. That also means 359 359 that you can change the collision shape of the child and it correctly cascadeds the changes to this instance. … … 628 628 @brief 629 629 Sets the three dimensional scaling of this object. 630 @ Note630 @note 631 631 Scaling physical objects has not yet been implemented and is therefore forbidden. 632 632 */ … … 774 774 @brief 775 775 Sets the CollisionType. This alters the object significantly! @see CollisionType. 776 @ Note776 @note 777 777 Operation does not work on attached WorldEntities. 778 778 */ … … 900 900 Recalculates the accumulated child mass and calls recalculateMassProps() 901 901 and notifies the parent of the change. 902 @ Note902 @note 903 903 Called by a child WE 904 904 */ … … 919 919 @brief 920 920 Undertakes the necessary steps to change the collision shape in Bullet, even at runtime. 921 @ Note921 @note 922 922 - called by this->collisionShape_ 923 923 - May have a REALLY big overhead when called continuously at runtime, because then we need -
code/branches/doc/src/orxonox/worldentities/WorldEntity.h
r7163 r7292 299 299 @brief 300 300 Returns the diagonal elements of the inertia tensor when calculated in local coordinates. 301 @ Note301 @note 302 302 The local inertia tensor cannot be set, but is calculated by Bullet according to the collisionShape. 303 303 With compound collision shapes, an approximation is used. … … 367 367 @param otherObject 368 368 The object this one has collided into. 369 @p ram contactPoint369 @param contactPoint 370 370 Contact point provided by Bullet. Holds more information and can me modified. See return value. 371 @ Return371 @return 372 372 Returning false means that no modification to the contactPoint has been made. Return true otherwise! 373 @ Note373 @note 374 374 Condition is that enableCollisionCallback() was called. 375 375 */
Note: See TracChangeset
for help on using the changeset viewer.