Panda3D
|
00001 // Filename: plane.h 00002 // Created by: mike (09Jan97) 00003 // 00004 //////////////////////////////////////////////////////////////////// 00005 // 00006 // PANDA 3D SOFTWARE 00007 // Copyright (c) Carnegie Mellon University. All rights reserved. 00008 // 00009 // All use of this software is subject to the terms of the revised BSD 00010 // license. You should have received a copy of this license along 00011 // with this source code in a file named "LICENSE." 00012 // 00013 //////////////////////////////////////////////////////////////////// 00014 00015 #ifndef PLANE_H 00016 #define PLANE_H 00017 00018 #include "pandabase.h" 00019 00020 #include "luse.h" 00021 #include "indent.h" 00022 #include "nearly_zero.h" 00023 #include "cmath.h" 00024 #include "parabola.h" 00025 00026 class Datagram; 00027 class DatagramIterator; 00028 00029 #include "fltnames.h" 00030 #include "plane_src.h" 00031 00032 #include "dblnames.h" 00033 #include "plane_src.h" 00034 00035 #ifndef STDFLOAT_DOUBLE 00036 typedef LPlanef LPlane; 00037 #else 00038 typedef LPlaned LPlane; 00039 #endif 00040 00041 // Bogus typedefs for interrogate and legacy Python code. 00042 #ifdef CPPPARSER 00043 typedef LPlanef PlaneF; 00044 typedef LPlaned PlaneD; 00045 #ifndef STDFLOAT_DOUBLE 00046 typedef LPlanef Plane; 00047 #else 00048 typedef LPlaned Plane; 00049 #endif 00050 #endif // CPPPARSER 00051 00052 #endif