mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-03-27 08:09:31 +00:00
final cleanup
final cleanup removal of the old convexDecomp library ADDDED: library for the floatmath from v-hacd resource, required for fit sphere/capsule/box functions
This commit is contained in:
parent
eb33fe04af
commit
109d8c06e9
33 changed files with 5851 additions and 17189 deletions
17
Engine/lib/convexMath/FloatMath.cpp
Normal file
17
Engine/lib/convexMath/FloatMath.cpp
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue