XMFLOAT3::XMFLOAT3 (float,float,float) 函数 (directxmath.h)
从三float
个参数初始化 的新XMFLOAT3
实例。
此构造函数从三float
个参数初始化 XMFLOAT3 的新实例。
注意 此构造函数仅在 C++ 下可用。
语法
void XMFLOAT3(
float _x,
float _y,
float _z
) noexcept;
参数
_x
要存储在 x 组件中的值 (的新实例XMFLOAT3
的 x 成员) 。
_y
要存储在 y 组件中的值 (的新实例XMFLOAT3
的 y 成员) 。
_z
要存储在 z 组件中的值 (的新实例XMFLOAT3
的 z 成员) 。
返回值
无
备注
以下伪代码演示此构造函数的操作:
XMFLOAT3 instance;
instance.x = _x;
instance.y = _y;
instance.z = _z;
要求
要求 | 值 |
---|---|
目标平台 | Windows |
标头 | directxmath.h |
另请参阅
引用