source:
orxonox.OLD/trunk/src/lib/collision_reaction/collision.cc
@
10293
Last change on this file since 10293 was 10013, checked in by patrick, 18 years ago | |
---|---|
File size: 955 bytes |
Rev | Line | |
---|---|---|
[7711] | 1 | /* |
[4510] | 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: | |
[4511] | 12 | main-programmer: Patrick Boenzli |
[4510] | 13 | co-programmer: ... |
14 | */ | |
15 | ||
[7940] | 16 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_COLLISION_REACTION |
[4510] | 17 | |
[4511] | 18 | #include "collision.h" |
[7949] | 19 | #include "debug.h" |
[4510] | 20 | |
[10013] | 21 | namespace CoRe |
[4510] | 22 | { |
23 | ||
[10013] | 24 | /** |
25 | * standard constructor | |
26 | */ | |
27 | Collision::Collision () | |
28 | { | |
29 | this->reset(); | |
30 | } | |
[4510] | 31 | |
[7949] | 32 | |
[10013] | 33 | /** |
34 | * standard deconstructor | |
35 | */ | |
36 | Collision::~Collision () | |
37 | {} | |
[7949] | 38 | |
[8108] | 39 | |
[10013] | 40 | /** |
41 | * resets all variable states to initial values | |
42 | */ | |
43 | void Collision::reset() | |
44 | { | |
45 | this->_entityA = NULL; | |
46 | this->_entityB = NULL; | |
[8108] | 47 | |
[10013] | 48 | this->_entityACollide = false; |
49 | this->_entityBCollide = false; | |
[8124] | 50 | |
[10013] | 51 | this->_collisionEvents.clear(); |
52 | } | |
53 | ||
[7968] | 54 | } |
Note: See TracBrowser
for help on using the repository browser.