XMSHORTN4::XMSHORTN4 (constint16_t*) 函数 (directxpackedvector.h)
从四个元素int16_t
数组参数初始化 XMSHORTN4 的新实例。
此构造函数从四元素int16_t
数组参数初始化 XMSHORTN4 的新实例。
注意 此构造函数仅在 C++ 下可用。
语法
void XMSHORTN4(
const int16_t *pArray
) noexcept;
参数
pArray
四个元素 int16_t
数组,其中包含用于初始化 XMSHORTN4 新实例的四个组件的值。
返回值
无
备注
输入值未规范化。 以下伪代码演示此构造函数的操作:
XMSHORTN4 instance;
instance.x = pArray[0];
instance.y = pArray[1];
instance.z = pArray[2];
instance.w = pArray[3];
要求
目标平台 | Windows |
标头 | directxpackedvector.h |