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