Panda3D
 All Classes Functions Variables Enumerations
portalMask.h
1 // Filename: portalMask.h
2 // Created by: masad (13May04)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 #ifndef PORTALMASK_H
16 #define PORTALMASK_H
17 
18 #include "pandabase.h"
19 
20 #include "bitMask.h"
21 
22 // This is the data type of the collision mask: the set of bits that
23 // every CollisionNode has, and that any two nodes must have some in
24 // common in order to be tested for a mutual intersection.
25 
26 // This file is templated from collideMask.h, hence it is here
27 
28 
29 typedef BitMask32 PortalMask;
30 
31 #endif
32