Newton Dynamics  4.00
dCore.h
1 /* Copyright (c) <2003-2019> <Julio Jerez, Newton Game Dynamics>
2 *
3 * This software is provided 'as-is', without any express or implied
4 * warranty. In no event will the authors be held liable for any damages
5 * arising from the use of this software.
6 *
7 * Permission is granted to anyone to use this software for any purpose,
8 * including commercial applications, and to alter it and redistribute it
9 * freely, subject to the following restrictions:
10 *
11 * 1. The origin of this software must not be misrepresented; you must not
12 * claim that you wrote the original software. If you use this software
13 * in a product, an acknowledgment in the product documentation would be
14 * appreciated but is not required.
15 *
16 * 2. Altered source versions must be plainly marked as such, and must not be
17 * misrepresented as being the original software.
18 *
19 * 3. This notice may not be removed or altered from any source distribution.
20 */
21 
22 #ifndef __D_CORE_H__
23 #define __D_CORE_H__
24 
25 #include <dCoreStdafx.h>
26 #include <dCRC.h>
27 #include <dList.h>
28 #include <dTree.h>
29 #include <dHeap.h>
30 #include <dSort.h>
31 #include <dTypes.h>
32 #include <dArray.h>
33 #include <dStack.h>
34 #include <dDebug.h>
35 #include <dPlane.h>
36 #include <dVector.h>
37 #include <dMatrix.h>
38 #include <dThread.h>
39 #include <dMemory.h>
40 #include <dGoogol.h>
41 #include <dString.h>
42 #include <dProfiler.h>
43 #include <dPolyhedra.h>
44 #include <dSyncMutex.h>
45 #include <dSemaphore.h>
46 #include <dClassAlloc.h>
47 #include <dRefCounter.h>
48 #include <dThreadPool.h>
49 #include <dIsoSurface.h>
50 #include <dQuaternion.h>
51 #include <dPerlinNoise.h>
52 #include <dTinyXmlGlue.h>
53 #include <dConvexHull3d.h>
54 #include <dConvexHull4d.h>
55 #include <dBezierSpline.h>
56 #include <dNodeHierarchy.h>
57 #include <dFixSizeBuffer.h>
58 #include <dIntersections.h>
59 #include <dSpatialMatrix.h>
60 #include <dGeneralVector.h>
61 #include <dGeneralMatrix.h>
62 #include <dTemplateVector.h>
63 #include <dContainersAlloc.h>
64 #include <dAabbPolygonSoup.h>
65 #include <dSmallDeterminant.h>
66 #include <dPolygonSoupBuilder.h>
67 #include <dPolygonSoupDatabase.h>
68 #include <dPolyhedraMassProperties.h>
69 #include <dDelaunayTetrahedralization.h>
70 
71 #endif
72