Accidentally changed spaces to tabs. Reverting that change.

This commit is contained in:
Aaron Cooper 2015-02-21 14:43:07 -05:00
parent 490cfbea3a
commit 982e395331

View File

@ -99,7 +99,7 @@ namespace glm
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][2] = (1 - c) * axis.x * axis.z - s * axis.y;
Result[0][3] = 0;