implement/match CalcLocalTransform (#241)

* implement/match CalcLocalTransform

* fix odd build error

* address feedback

move vec.h to thirdparty folder
update vec.h
move all realtime code to realtime folder
move calclocaltransform out of legoutil and into realtime
cast shift to MxS32
add additional unroll hack to CalcLocalTransform to prevent msvc entropy
This commit is contained in:
Ramen2X
2023-10-24 08:27:24 -04:00
committed by GitHub
parent 1ab29590ee
commit 74329d681b
9 changed files with 1150 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
#ifndef REALTIMEVIEW_H
#define REALTIMEVIEW_H
class RealtimeView
{
public:
__declspec(dllexport) static float GetPartsThreshold();
__declspec(dllexport) static float GetUserMaxLOD();
__declspec(dllexport) static void SetPartsThreshold(float);
static void UpdateMaxLOD();
__declspec(dllexport) static void SetUserMaxLOD(float);
};
#endif // REALTIMEVIEW_H