XMSHORT4::XMSHORT4 (constfloat*) 函数 (directxpackedvector.h)
从四个元素float
数组参数初始化 XMSHORT4 的新实例。
此构造函数从四个元素float
数组参数初始化 XMSHORT4 的新实例。
注意 此构造函数仅在 C++ 下可用。
语法
void XMSHORT4(
const float *pArray
) noexcept;
参数
pArray
四个元素 float
数组,其中包含用于初始化 XMSHORT4 新实例的四个组件的值。
返回值
无
备注
构造函数中 pArray 参数的每个成员的量级将固定到 16 位无符号整数 [-32767.0, 32767.0] 支持的范围。
以下伪代码演示此构造函数的操作:
XMSHORT4 instance;
instance.x = (int16_t)min( max( pArray[0] -32767.0 ), 32767.0 );
instance.y = (int16_t)min( max( pArray[1] -32767.0 ), 32767.0 );
instance.z = (int16_t)min( max( pArray[2] -32767.0 ), 32767.0 );
instance.w = (int16_t)min( max( pArray[3] -32767.0 ), 32767.0 );
要求
要求 | 值 |
---|---|
目标平台 | Windows |
标头 | directxpackedvector.h |