plumageRender/3rdparty/glm/gtx/perpendicular.inl

11 lines
199 B
Plaintext
Raw Normal View History

2023-05-17 14:49:05 +08:00
/// @ref gtx_perpendicular
namespace glm
{
2023-06-07 10:52:04 +08:00
template<typename genType>
GLM_FUNC_QUALIFIER genType perp(genType const& x, genType const& Normal)
2023-05-17 14:49:05 +08:00
{
return x - proj(x, Normal);
}
}//namespace glm