mirror of
https://github.com/g-truc/glm.git
synced 2024-11-22 08:54:35 +00:00
Merge pull request #1091 from yknishidate/bugfix
Fix tengant typo #1091
This commit is contained in:
commit
f08ee17957
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user