共用方式為


XMINT3::XMINT3 (int32_t,int32_t,int32_t) 函式 (directxmath.h)

從三int32_t個自變數初始化 的新實例XMINT3

這個建構函式會從三int32_t個自變數初始化 XMINT3 的新實例。

注意 此建構函式只能在 C++ 下使用。
 

語法

void XMINT3(
  int32_t _x,
  int32_t _y,
  int32_t _z
) noexcept;

參數

_x

要儲存在 x 元件中的值, (新實例XMINT3x 成員) 。

_y

要儲存在 y 元件中的值, (新實例XMINT3y 成員) 。

_z

要儲存在 z 元件中的值, (新實例XMINT3z 成員) 。

傳回值

備註

下列虛擬程式代碼示範此建構函式的作業:


	XMINT3 instance;
	instance.x =  _x;
	instance.y =  _y;
	instance.z =  _z;
    

規格需求

需求
目標平台 Windows
標頭 directxmath.h

另請參閱

參考

XMINT3

XMINT3 建構函式