summaryrefslogtreecommitdiffstats
path: root/external/include/glm/gtx/perpendicular.inl
diff options
context:
space:
mode:
Diffstat (limited to 'external/include/glm/gtx/perpendicular.inl')
-rw-r--r--external/include/glm/gtx/perpendicular.inl8
1 files changed, 2 insertions, 6 deletions
diff --git a/external/include/glm/gtx/perpendicular.inl b/external/include/glm/gtx/perpendicular.inl
index 08a7a81..3b99eed 100644
--- a/external/include/glm/gtx/perpendicular.inl
+++ b/external/include/glm/gtx/perpendicular.inl
@@ -3,12 +3,8 @@
namespace glm
{
- template <typename vecType>
- GLM_FUNC_QUALIFIER vecType perp
- (
- vecType const & x,
- vecType const & Normal
- )
+ template<typename genType>
+ GLM_FUNC_QUALIFIER genType perp(genType const& x, genType const& Normal)
{
return x - proj(x, Normal);
}