📄 threejs/Core/Extras/DataUtils

File: DataUtils.md | Updated: 11/15/2025


title: DataUtils category: Core layout: docs

DataUtils

A class containing utility functions for data.

Static Methods

.fromHalfFloat( val : number ) : number

Returns a single precision floating point value (FP32) from the given half precision floating point value (FP16).

val | A half precision floating point value.
---|---

Returns: The FP32 value.

.toHalfFloat( val : number ) : number

Returns a half precision floating point value (FP16) from the given single precision floating point value (FP32).

val | A single precision floating point value.
---|---

Returns: The FP16 value.

Source

src/extras/DataUtils.js