Files
deighton-ar/mobile/ios/ViroKit.framework/Headers/glm/gtx/perpendicular.inl
2018-03-27 17:46:15 -07:00

16 lines
264 B
C++
Executable File

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