XMFLOAT2::XMFLOAT2 (constfloat*) 函式 (directxmath.h)
從兩float
個項目數位自變數初始化 的新實例XMFLOAT2
。
這個建構函式會從兩個元素float
數位自變數初始化 XMFLOAT2 的新實例。
注意 此建構函式只能在 C++ 下使用。
語法
void XMFLOAT2(
const float *pArray
) noexcept;
參數
pArray
兩個元素 float
數位列,其中包含用來初始化 新實例 XMFLOAT2
的兩個元件的值。
傳回值
無
備註
XMFLOAT2 instance;
instance.x = pArray[0];
instance.y = pArray[1];
instance.z = pArray[2];
instance.w = pArray[3];
需求
需求 | 值 |
---|---|
目標平台 | Windows |
標頭 | directxmath.h |
另請參閱
參考