XMSHORT2::XMSHORT2 (int16_t,int16_t) 函数 (directxpackedvector.h)
从两int16_t
个参数初始化 的新XMSHORT2
实例。
此构造函数从两int16_t
个参数初始化 XMSHORT2 的新实例。
注意 此构造函数仅在 C++ 下可用。
语法
void XMSHORT2(
int16_t _x,
int16_t _y
) noexcept;
参数
_x
向量的 x 坐标的值,新XMSHORT2
实例的 x 成员。
_y
向量的 y 坐标的值,新XMSHORT2
实例的 y 成员。
返回值
无
备注
以下伪代码演示此构造函数的操作:
XMSHORT2 instance;
instance.x = _x;
instance.y = _y;
要求
要求 | 值 |
---|---|
目标平台 | Windows |
标头 | directxpackedvector.h |
另请参阅
引用