/// @ref gtx_perpendicular
/// @file glm/gtx/perpendicular.inl
namespace glm
{
template<typename genType>
GLM_FUNC_QUALIFIER genType perp(genType const& x, genType const& Normal)
return x - proj(x, Normal);
}
}//namespace glm