Browse Source

format fix

plasmacel 11 years ago
parent
commit
7e3dc0ae16
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/gtc/reciprocal.inl

+ 1 - 1
glm/gtc/reciprocal.inl

@@ -66,8 +66,8 @@ namespace glm
 	GLM_FUNC_QUALIFIER genType cot(genType angle)
 	GLM_FUNC_QUALIFIER genType cot(genType angle)
 	{
 	{
 		GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'cot' only accept floating-point values");
 		GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'cot' only accept floating-point values");
+	
 		genType const pi_over_2 = genType(3.1415926535897932384626433832795 / 2.0);
 		genType const pi_over_2 = genType(3.1415926535897932384626433832795 / 2.0);
-		
 		return glm::tan(pi_over_2 - angle);
 		return glm::tan(pi_over_2 - angle);
 	}
 	}