Files
UnrealEngine/Engine/Source/ThirdParty/Imath/Imath-3.1.12/website/examples/half.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

14 lines
153 B
C++

#include <Imath/half.h>
#include <math.h>
void
half_example()
{
half a (3.5);
float b (a + sqrt (a));
a += b;
b += a;
b = a + 7;
}