Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/physics/fields/gravity.cc @ 4730

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

orxonox/trunk: loading fields

File size: 1.3 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16//#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_
17
18#include "gravity.h"
19
20#include "load_param.h"
21#include "factory.h"
22
23using namespace std;
24
25CREATE_FACTORY(Gravity);
26
27/**
28   \brief standard constructor
29   \todo this constructor is not jet implemented - do it
30*/
31Gravity::Gravity ()
32{
33   this->setClassName("Gravity");
34}
35
36Gravity::Gravity(const TiXmlElement* root)
37{
38  this->setClassName("Gravity");
39
40  this->loadParams(root);
41}
42
43/**
44   \brief standard deconstructor
45
46*/
47Gravity::~Gravity ()
48{
49  // delete what has to be deleted here
50}
51
52void Gravity::loadParams(const TiXmlElement* root)
53{
54  static_cast<Field*>(this)->loadParams(root);
55}
56
57/**
58   \brief calculates the Gravity on any point in space
59   \param data The Position of the Point in space to attache gravity to.
60   \returns The force.
61*/
62Vector Gravity::calcForce(const Vector& data) const
63{
64  return Vector(0,-1,0) * this->getMagnitude();
65}
66
67
Note: See TracBrowser for help on using the repository browser.