Adding ViroKit. Needs AWSCore :(
This commit is contained in:
15
mobile/ios/ViroKit.framework/Headers/glm/gtx/perpendicular.inl
Executable file
15
mobile/ios/ViroKit.framework/Headers/glm/gtx/perpendicular.inl
Executable file
@@ -0,0 +1,15 @@
|
||||
/// @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
|
||||
Reference in New Issue
Block a user