Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/physics/src/util/physics/physical_interaction_asym.h @ 3962

Last change on this file since 3962 was 3962, checked in by patrick, 19 years ago

orxonox/branches/physics: just got the inheritance right

File size: 555 bytes
Line 
1/*!
2    \file physical_interaction_asym.h
3    \brief Definition a asymmertrical physical interaction like force field that (in our implementation)
4    hast no reactio
5*/
6
7#ifndef _PHYSICAL_INTERACTION_ASYM_H
8#define _PHYSICAL_INTERACTION_ASYM_H
9
10#include "physical_interaction.h"
11
12
13//! An asymmetrical force
14/**
15   forces, that only work in one firection
16*/
17class PhysicalInteractionAsym : public PhysicalInteraction {
18
19 public:
20  PhysicalInteractionAsym();
21  virtual ~PhysicalInteractionAsym();
22
23 private:
24
25};
26
27#endif /* _PHYSICAL_INTERACTION_ASYM_H */
Note: See TracBrowser for help on using the repository browser.