![]() |
UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
|
#include <Float32.h>
Public Member Functions | |
| FFloat32 (float InValue=0.0f) | |
Public Attributes | ||
| union { | ||
| struct { | ||
| uint32 Sign: 1 | ||
| uint32 Exponent: 8 | ||
| uint32 Mantissa: 23 | ||
| } Components | ||
| float FloatValue | ||
| }; | ||
32 bit float components
| UE_FORCEINLINE_HINT FFloat32::FFloat32 | ( | float | InValue = 0.0f | ) |
Constructor
| InValue | value of the float. |
| union { ... } FFloat32 |
| struct { ... } FFloat32::Components |
| uint32 FFloat32::Exponent |
| float FFloat32::FloatValue |
| uint32 FFloat32::Mantissa |
| uint32 FFloat32::Sign |