共用方式為


XMVectorCatmullRomV 函式 (directxmath.h)

使用指定的位置向量,執行 Catmull-Rom 插補點。

語法

XMVECTOR XM_CALLCONV XMVectorCatmullRomV(
  [in] FXMVECTOR Position0,
  [in] FXMVECTOR Position1,
  [in] FXMVECTOR Position2,
  [in] GXMVECTOR Position3,
  [in] HXMVECTOR T
) noexcept;

參數

[in] Position0

第一個位置。

[in] Position1

第二個位置。

[in] Position2

第三個位置。

[in] Position3

第四個位置。

[in] T

插入位置之對應元件的控制因數。

傳回值

傳回 Catmull-Rom 插補點的結果。

備註

此函式與 XMVectorCatmullRom 相同,不同之處在於 T 中可能提供的獨立加權因數。例如,您可能想要針對一組 2D 位置計算兩組 Catmull-Rom 插補點,使用一組 2D 位置的位置向量的 x 和 y 元件,以及另一組 2D 位置位置向量的 z 和 w 元件。 T 的 x 和 y 元件會決定第一個 Catmull-Rom 插補點的插補因素。 同樣地, T 的 z 和 w 元件會決定第二個 Catmull-Rom 插補點的插補因素。

平臺需求

Microsoft Visual Studio 2010 或 Microsoft Visual Studio 2012 搭配 Windows SDK for Windows 8。 支援 Win32 傳統型應用程式、Windows 市集應用程式和 Windows Phone 8 個應用程式。

規格需求

需求
目標平台 Windows
標頭 directxmath.h (包含 DirectXMath.h)

另請參閱

幾何向量函式

XMVectorCatmullRom