mirror of
https://github.com/SlimeVR/SlimeVR-Tracker-ESP.git
synced 2026-04-06 02:01:57 +02:00
8 lines
144 B
C
8 lines
144 B
C
#ifndef _OWO_UTIL_H_
|
|
#define _OWO_UTIL_H_
|
|
|
|
float vector_dot(float a[3], float b[3]);
|
|
|
|
void vector_normalize(float a[3]);
|
|
|
|
#endif // _OWO_UTIL_H_
|