XMVector2Orthogonal 函式 (directxmath.h)
計算與 2D 向量垂直的向量。
語法
XMVECTOR XM_CALLCONV XMVector2Orthogonal(
[in] FXMVECTOR V
) noexcept;
參數
[in] V
2D 向量。
傳回值
傳回 2D 向量正交至 V。
備註
請注意,2D 中的「跨產品」並未妥善定義。 此函式會在 2D 中計算一般化的跨產品。 XMVector2Cross 是 2D 中「跨產品」的另一個可能解譯。
下列虛擬程式代碼示範函式的作業:
XMVECTOR Result;
Result.x = -V.y;
Result.y = V.x;
Result.z = 0;
Result.w = 0;
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) |