XMVectorClamp 函式 (directxmath.h)
將向量的元件限制為指定的最小值和最大值範圍。
語法
XMVECTOR XM_CALLCONV XMVectorClamp(
[in] FXMVECTOR V,
[in] FXMVECTOR Min,
[in] FXMVECTOR Max
) noexcept;
參數
[in] V
要限制其元件的向量。
[in] Min
最小範圍向量。
[in] Max
範圍向量上限。
傳回值
傳回向量,其元件會固定在指定的最小值和最大值。
備註
下列虛擬程式代碼示範函式的作業:
XMVECTOR Result;
Result.x = min( max( V.x, Min.x ), Max.x );
Result.y = min( max( V.y, Min.y ), Max.y );
Result.z = min( max( V.z, Min.z ), Max.z );
Result.w = min( max( V.w, Min.w ), Max.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) |