Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/branches/physics/src/util/physics/physics_connection.cc @ 4181

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

orxonox/branches/physics: simple definition of a PhisicsConnection

File size: 1.1 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 "physics_connection.h"
19
20
21using namespace std;
22
23
24/**
25   \brief standard constructor
26*/
27PhysicsConnection::PhysicsConnection () 
28{
29   this->setClassName ("PhysicsConnection");
30   connection = NULL;
31}
32
33
34/**
35   \brief standard deconstructor
36
37*/
38PhysicsConnection::~PhysicsConnection () 
39{
40  if (this->connection)
41    delete this->connection;
42}
43
44
45
46
47
48
49bool PhysicsConnection::addConnection(ParticleSystem* particleSystem, Field* field)
50{
51  if (!this->connection)
52    {
53      this->connection = new PhysConnection;
54      this->connection->type = PCON_ParticlesField;
55      this->connection->particleSystem = particleSystem;
56      this->connection->field = field;
57    }
58}
Note: See TracBrowser for help on using the repository browser.