mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-19 20:24:49 +00:00
final cleanup removal of the old convexDecomp library ADDDED: library for the floatmath from v-hacd resource, required for fit sphere/capsule/box functions
18 lines
262 B
C++
18 lines
262 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#include <math.h>
|
|
#include <float.h>
|
|
#include "FloatMath.h"
|
|
#include <vector>
|
|
|
|
#define REAL float
|
|
|
|
#include "FloatMath.inl"
|
|
|
|
#undef REAL
|
|
#define REAL double
|
|
|
|
#include "FloatMath.inl"
|