XMVectorCeiling 関数 (directxmath.h)
XMVECTOR の各コンポーネントの上限を計算します。
構文
XMVECTOR XM_CALLCONV XMVectorCeiling(
[in] FXMVECTOR V
) noexcept;
パラメーター
[in] V
天井を計算するベクトル。
戻り値
コンポーネントが V の対応するコンポーネントの天井であるベクトルを返します。
注釈
プラットフォームの要件
Microsoft Visual Studio 2010 または Microsoft Visual Studio 2012 と Windows SDK for Windows 8。 Win32 デスクトップ アプリ、Windows ストア アプリ、Windows Phone 8 アプリでサポートされます。XMVectorCeiling は次のように実装されます。
XMVECTOR Result;
Result.x = ceilf(V.x);
Result.y = ceilf(V.y);
Result.z = ceilf(V.z);
Result.w = ceilf(V.w);
return Result;
要件
要件 | 値 |
---|---|
対象プラットフォーム | Windows |
ヘッダー | directxmath.h (DirectXMath.h を含む) |