Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/physics/fields/gravity.h @ 4728

Last change on this file since 4728 was 4728, checked in by bensch, 19 years ago

orxonox/trunk: more loading (especially for physics)

File size: 416 bytes
RevLine 
[4728]1/*!
[4180]2    \file gravity.h
[4178]3    \brief Definition of ...
[3329]4
[3245]5*/
[1853]6
[4180]7#ifndef _GRAVITY_H
8#define _GRAVITY_H
[1853]9
[4180]10#include "field.h"
[1853]11
[4178]12// FORWARD DEFINITION
[3543]13
14
[2036]15
[4178]16//! A class for ...
[4180]17class Gravity : public Field {
[1853]18
[1904]19 public:
[4180]20  Gravity();
[4728]21  Gravity(const TiXmlElement* root);
[4180]22  virtual ~Gravity();
[1853]23
[4728]24  void loadParams(const TiXmlElement* root);
25
[4395]26  virtual Vector calcForce(const Vector& data) const;
[3245]27
28 private:
29
[1853]30};
31
[4180]32#endif /* _GRAVITY_H */
Note: See TracBrowser for help on using the repository browser.