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