Changeset 4836 in orxonox.OLD for orxonox/trunk/src/lib/physics/fields
- Timestamp:
- Jul 12, 2005, 12:33:16 AM (19 years ago)
- Location:
- orxonox/trunk/src/lib/physics/fields
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/physics/fields/field.cc
r4746 r4836 25 25 26 26 /** 27 \briefstandard constructor27 * standard constructor 28 28 */ 29 29 Field::Field () … … 33 33 34 34 /** 35 \briefstandard deconstructor35 * standard deconstructor 36 36 37 37 */ … … 54 54 55 55 /** 56 \param root The XML-element to load settings from56 * @param root The XML-element to load settings from 57 57 */ 58 58 void Field::loadParams(const TiXmlElement* root) … … 69 69 70 70 /** 71 \param magnitude the magnitude of the Field.71 * @param magnitude the magnitude of the Field. 72 72 */ 73 73 void Field::setMagnitude(float magnitude) … … 77 77 78 78 /** 79 \param attenuation The attenuation of the Field (the bigger the smaller the region of influence)79 * @param attenuation The attenuation of the Field (the bigger the smaller the region of influence) 80 80 */ 81 81 void Field::setAttenuation(float attenuation) -
orxonox/trunk/src/lib/physics/fields/field.h
r4746 r4836 16 16 /*! 17 17 \file field.h 18 \briefabstract definition of a Physical Field18 * abstract definition of a Physical Field 19 19 20 20 This is a totally abstract class, that only enables different Physical Fields to … … 42 42 43 43 /** 44 \param data This is the data given to this force, to calculate the ForceVector45 \returns The Force Vector44 * @param data This is the data given to this force, to calculate the ForceVector 45 * @returns The Force Vector 46 46 */ 47 47 virtual Vector calcForce(const Vector& data) const = 0; 48 48 49 49 void setMagnitude(float magnitude); 50 /** \returns The Magnitude of the Field */50 /** @returns The Magnitude of the Field */ 51 51 inline const float& getMagnitude() const {return this->magnitude;} 52 52 53 53 void setAttenuation(float attenuation); 54 /** \returns The Attenuation of the Fiels */54 /** @returns The Attenuation of the Fiels */ 55 55 inline const float& getAttenuation() const {return this->attenuation;} 56 56 -
orxonox/trunk/src/lib/physics/fields/fields.h
r4338 r4836 16 16 /*! 17 17 \file fields.h 18 \briefcollection of all Headers of all the different fileds there are in the18 * collection of all Headers of all the different fileds there are in the 19 19 PhysicsEngine 20 20 */ -
orxonox/trunk/src/lib/physics/fields/gravity.cc
r4742 r4836 34 34 35 35 /** 36 \briefstandard deconstructor36 * standard deconstructor 37 37 38 38 */ … … 48 48 49 49 /** 50 \briefcalculates the Gravity on any point in space51 \param data The Position of the Point in space to attache gravity to.52 \returns The force.50 * calculates the Gravity on any point in space 51 * @param data The Position of the Point in space to attache gravity to. 52 * @returns The force. 53 53 */ 54 54 Vector Gravity::calcForce(const Vector& data) const -
orxonox/trunk/src/lib/physics/fields/gravity.h
r4742 r4836 1 1 /*! 2 2 \file gravity.h 3 \briefDefinition of ...3 * Definition of ... 4 4 5 5 */ -
orxonox/trunk/src/lib/physics/fields/point_gravity.cc
r4742 r4836 22 22 23 23 /** 24 \briefstandard constructor25 \todo this constructor is not jet implemented - do it24 * standard constructor 25 @todo this constructor is not jet implemented - do it 26 26 */ 27 27 PointGravity::PointGravity () … … 32 32 33 33 /** 34 \briefstandard deconstructor34 * standard deconstructor 35 35 36 36 */ … … 41 41 42 42 /** 43 \briefcalculates the PointGravity on any point in space44 \param data The Position of the Point in space to attache PointGravity to.45 \returns The force.43 * calculates the PointGravity on any point in space 44 * @param data The Position of the Point in space to attache PointGravity to. 45 * @returns The force. 46 46 */ 47 47 Vector PointGravity::calcForce(const Vector& data) const -
orxonox/trunk/src/lib/physics/fields/point_gravity.h
r4395 r4836 1 1 /*! 2 2 \file point_gravity.h 3 \briefDefinition of ...3 * Definition of ... 4 4 5 5 */ -
orxonox/trunk/src/lib/physics/fields/twirl.cc
r4742 r4836 22 22 23 23 /** 24 \briefstandard constructor25 \todo this constructor is not jet implemented - do it24 * standard constructor 25 @todo this constructor is not jet implemented - do it 26 26 */ 27 27 Twirl::Twirl () … … 32 32 33 33 /** 34 \briefstandard deconstructor34 * standard deconstructor 35 35 36 36 */ … … 41 41 42 42 /** 43 \briefcalculates the Twirl on any point in space44 \param data The Position of the Point in space to attache twirl to.45 \returns The force.43 * calculates the Twirl on any point in space 44 * @param data The Position of the Point in space to attache twirl to. 45 * @returns The force. 46 46 */ 47 47 Vector Twirl::calcForce(const Vector& data) const -
orxonox/trunk/src/lib/physics/fields/twirl.h
r4395 r4836 1 1 /*! 2 2 \file twirl.h 3 \briefDefinition of ...3 * Definition of ... 4 4 5 5 */
Note: See TracChangeset
for help on using the changeset viewer.