From a308267af36fcd5f5f01319762b669821c4d2a71 Mon Sep 17 00:00:00 2001 From: barry Date: Wed, 12 Dec 2018 12:27:14 -0800 Subject: [PATCH] Fixed bug in Far::PatchMap for rotated triangular patches: - cancelled the rotation when in the rotated quadrant of a rotated triangle --- opensubdiv/far/patchMap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opensubdiv/far/patchMap.h b/opensubdiv/far/patchMap.h index 79b5493f..09128e3b 100644 --- a/opensubdiv/far/patchMap.h +++ b/opensubdiv/far/patchMap.h @@ -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;