XMVectorMergeZW 関数 (directxmath.h)
2 つのベクトルの z 成分と w 成分を組み合わせて、新しいベクトルを作成します。
構文
XMVECTOR XM_CALLCONV XMVectorMergeZW(
[in] FXMVECTOR V1,
[in] FXMVECTOR V2
) noexcept;
パラメーター
[in] V1
最初のベクター。
[in] V2
2 番目のベクター。
戻り値
マージされたベクターを返します。
注釈
次の擬似コードは、 関数の操作を示しています。
XMVECTOR Result;
Result.x = V1.z;
Result.y = V2.z;
Result.z = V1.w;
Result.w = V2.w;
return Result;
プラットフォームの要件
Microsoft Visual Studio 2010 または Microsoft Visual Studio 2012 と Windows SDK for Windows 8。 Win32 デスクトップ アプリ、Windows ストア アプリ、Windows Phone 8 アプリでサポートされます。要件
要件 | 値 |
---|---|
対象プラットフォーム | Windows |
ヘッダー | directxmath.h (DirectXMath.h を含む) |