#include <collision_surface_temp.h>
Nevrax France
Definition at line 213 of file collision_surface_temp.h.
Public Member Functions | |
CRotSurfaceDesc (CSurfaceIdent left, CSurfaceIdent right) | |
CRotSurfaceDesc () | |
const CSurfaceIdent & | getOtherSurface (const CSurfaceIdent &surf) |
Return Left if surf==Right, else return Right. | |
bool | hasSurface (const CSurfaceIdent &surf) |
test if Left or Right == surf. | |
Data Fields | |
CSurfaceIdent | LeftSurface |
To which chain we have collided. | |
CSurfaceIdent | RightSurface |
To which chain we have collided. | |
bool | Tested |
This tells if this chain (arc of the graph) has been inserted. |
|
Definition at line 223 of file collision_surface_temp.h.
00223 : Tested(false) {} |
|
Definition at line 224 of file collision_surface_temp.h.
00224 : Tested(false), LeftSurface(left), RightSurface(right) {} |
|
Return Left if surf==Right, else return Right.
Definition at line 233 of file collision_surface_temp.h.
00234 { 00235 if(RightSurface==surf) 00236 return LeftSurface; 00237 else 00238 return RightSurface; 00239 } |
|
test if Left or Right == surf.
Definition at line 227 of file collision_surface_temp.h.
00228 { 00229 return LeftSurface==surf || RightSurface==surf; 00230 } |
|
To which chain we have collided.
Definition at line 220 of file collision_surface_temp.h. |
|
To which chain we have collided.
Definition at line 220 of file collision_surface_temp.h. |
|
This tells if this chain (arc of the graph) has been inserted.
Definition at line 217 of file collision_surface_temp.h. |