Browse Source

Accidentally changed spaces to tabs. Reverting that change.

Aaron Cooper 10 years ago
parent
commit
982e395331
1 changed files with 1 additions and 1 deletions
  1. 1 1
      glm/gtc/matrix_transform.inl

+ 1 - 1
glm/gtc/matrix_transform.inl

@@ -99,7 +99,7 @@ namespace glm
 
 
 		tvec3<T, P> axis = normalize(v);
 		tvec3<T, P> axis = normalize(v);
 
 
-		Result[0][0] = c + (1 - c)	  * axis.x	 * axis.x;
+		Result[0][0] = c + (1 - c)      * axis.x     * axis.x;
 		Result[0][1] = (1 - c) * axis.x * axis.y + s * axis.z;
 		Result[0][1] = (1 - c) * axis.x * axis.y + s * axis.z;
 		Result[0][2] = (1 - c) * axis.x * axis.z - s * axis.y;
 		Result[0][2] = (1 - c) * axis.x * axis.z - s * axis.y;
 		Result[0][3] = 0;
 		Result[0][3] = 0;