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