Panda3D
plane.h
1 // Filename: plane.h
2 // Created by: mike (09Jan97)
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 PLANE_H
16 #define PLANE_H
17 
18 #include "pandabase.h"
19 
20 #include "luse.h"
21 #include "indent.h"
22 #include "nearly_zero.h"
23 #include "cmath.h"
24 #include "parabola.h"
25 
26 class Datagram;
27 class DatagramIterator;
28 
29 #include "fltnames.h"
30 #include "plane_src.h"
31 
32 #include "dblnames.h"
33 #include "plane_src.h"
34 
35 #ifndef STDFLOAT_DOUBLE
36 typedef LPlanef LPlane;
37 #else
38 typedef LPlaned LPlane;
39 #endif
40 
41 // Bogus typedefs for interrogate and legacy Python code.
42 #ifdef CPPPARSER
43 typedef LPlanef PlaneF;
44 typedef LPlaned PlaneD;
45 #ifndef STDFLOAT_DOUBLE
46 typedef LPlanef Plane;
47 #else
48 typedef LPlaned Plane;
49 #endif
50 #endif // CPPPARSER
51 
52 #endif
A class to retrieve the individual data elements previously stored in a Datagram. ...
An ordered list of data elements, formatted in memory for transmission over a socket or writing to a ...
Definition: datagram.h:43