XMVector2Refract 函数 (directxmath.h)
在 2D 法向量上折射事件 2D 矢量。
语法
XMVECTOR XM_CALLCONV XMVector2Refract(
[in] FXMVECTOR Incident,
[in] FXMVECTOR Normal,
[in] float RefractionIndex
) noexcept;
参数
[in] Incident
要折射的 2D 事件向量。
[in] Normal
用于折射事件向量的 2D 法线向量。
[in] RefractionIndex
折射索引。 请参阅备注。
返回值
返回折射的事件向量。 如果折射指数和事件向量与法线之间的角度使得结果为总内部反射,则函数将返回形式 < 为 0.0f、0.0f、undefined、undefined >的向量。
备注
以下伪代码演示函数的操作:
XMVECTOR Result;
float t = (Incident.x * Normal.x + Incident.y * Normal.y); // dot(Incident, Normal);
float r = 1.0f - RefractionIndex * RefractionIndex * (1.0f - t * t);
if (r < 0.0f) // Total internal reflection
{
Result.x = 0.0f;
Result.y = 0.0f;
}
else
{
float s = RefractionIndex * t + sqrt(r);
Result.x = RefractionIndex * Incident.x - s * Normal.x;
Result.y = RefractionIndex * Incident.y - s * Normal.y;
}
Result.z = undefined;
Result.w = undefined;
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) |