Merge pull request #1032 from barfowl/far_tri_patch_map_bug

Fixed bug in Far::PatchMap for rotated triangular patches
This commit is contained in:
David G Yu 2018-12-14 09:51:29 -08:00 committed by GitHub
commit 8014b3ab08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -181,7 +181,7 @@ PatchMap::transformUVToTriQuadrant(T const & median, T & u, T & v, bool & rotate
u -= median;
v -= median;
if ((u + v) < median) {
rotated = true;
rotated = false;
return 3;
}
return 0;