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

13 lines
150 B
C

#include <Imath/half.h>
void
half_example()
{
float f = 3.5f;
half h = imath_float_to_half (f)
float hh = imath_half_to_float (h)
}