Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/physics/src/util/physics/fields/gravity.h @ 4186

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

orxonox/branches/physics: forces now time dependant

File size: 344 bytes
Line 
1/*!
2    \file gravity.h
3    \brief Definition of ...
4
5*/
6
7#ifndef _GRAVITY_H
8#define _GRAVITY_H
9
10#include "field.h"
11
12// FORWARD DEFINITION
13
14
15
16//! A class for ...
17class Gravity : public Field {
18
19 public:
20  Gravity();
21  virtual ~Gravity();
22
23  virtual Vector calcForce(float dt, const Vector& data) const;
24
25 private:
26
27};
28
29#endif /* _GRAVITY_H */
Note: See TracBrowser for help on using the repository browser.