XMINT4::XMINT4 (int32_t,int32_t,int32_t,int32_t) 函式 (directxmath.h)
從四int32_t
個自變數初始化 的新實例XMINT4
。
這個建構函式會從四int32_t
個自變數初始化 XMINT4 的新實例。
注意 此建構函式只能在 C++ 下使用。
語法
void XMINT4(
int32_t _x,
int32_t _y,
int32_t _z,
int32_t _w
) noexcept;
參數
_x
向量的 x 座標值,新XMINT4
實例的 x 成員。
_y
向量的 Y 座標值,新XMINT4
實例的 Y 成員。
_z
向量的 z 座標值,新XMINT4
實例的 z 成員。
_w
向量的 w 座標值,新 XMINT4
實例的 w 成員。
傳回值
無
備註
下列虛擬程式代碼示範此建構函式的作業:
XMINT4 instance;
instance.x = _x;
instance.y = _y;
instance.z = _z;
instance.w = _w;
規格需求
需求 | 值 |
---|---|
目標平台 | Windows |
標頭 | directxmath.h |
另請參閱
參考