Files
UnrealEngine/Engine/Source/ThirdParty/Imath/Imath-3.1.12/website/examples/half.cpp
2025-05-18 13:04:45 +08: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;
}