Browse Source

Merge pull request #1091 from yknishidate/bugfix

Fix tengant typo #1091
Christophe 3 years ago
parent
commit
f08ee17957
1 changed files with 5 additions and 5 deletions
  1. 5 5
      glm/gtx/intersect.inl

+ 5 - 5
glm/gtx/intersect.inl

@@ -114,19 +114,19 @@ namespace glm
 			return false;
 		typename genType::value_type inv_det = typename genType::value_type(1) / det;
 
-		genType Tengant = orig - vert0;
+		genType Tangent = orig - vert0;
 
-		position.y = dot(Tengant, Perpendicular) * inv_det;
+		position.y = dot(Tangent, Perpendicular) * inv_det;
 		if (position.y < typename genType::value_type(0) || position.y > typename genType::value_type(1))
 			return false;
 
-		genType Cotengant = cross(Tengant, edge1);
+		genType Cotangent = cross(Tangent, edge1);
 
-		position.z = dot(dir, Cotengant) * inv_det;
+		position.z = dot(dir, Cotangent) * inv_det;
 		if (position.z < typename genType::value_type(0) || position.y + position.z > typename genType::value_type(1))
 			return false;
 
-		position.x = dot(edge2, Cotengant) * inv_det;
+		position.x = dot(edge2, Cotangent) * inv_det;
 
 		return true;
 	}