improve accuracy

This commit is contained in:
Misha
2023-06-27 18:35:58 +03:00
parent 4c2e1ca95c
commit 78b0e8dd62
4 changed files with 33 additions and 35 deletions

View File

@@ -6,5 +6,5 @@ inline T Abs(T p_t)
{
return p_t < 0 ? -p_t : p_t;
}
void ConvertColor(float r, float g, float b, float* out_r, float* out_g, float* out_b);
void ConvertHSVToRGB(float r, float g, float b, float* out_r, float* out_g, float* out_b);
#endif // LEGOUTIL_H