UNPKG

laya-coreui-es

Version:

laya核心库、ui库es版本,剔除了媒体、TTF等功能。基于 LayaAir-release_2.12.0 修改

16 lines (15 loc) 468 B
/** * <code>HalfFloatUtils</code> 类用于创建HalfFloat工具。 */ export declare class HalfFloatUtils { /** * round a number to a half float number bits. * @param {number} num */ static roundToFloat16Bits(num: number): number; /** * convert a half float number bits to a number. * @param {number} float16bits - half float number bits */ static convertToNumber(float16bits: number): number; }