Commit: 3382a4dbf0d9a9608986a5a6599a2f6a99e9546a
Author: Bastien Montagne
Date:   Sun Nov 9 18:22:44 2014 +0100
Branches: mesh-transfer-data
https://developer.blender.org/rB3382a4dbf0d9a9608986a5a6599a2f6a99e9546a

Fix UV interpolation.

===================================================================

M       source/blender/blenkernel/intern/customdata.c

===================================================================

diff --git a/source/blender/blenkernel/intern/customdata.c 
b/source/blender/blenkernel/intern/customdata.c
index bae757b..a2fc3e0 100644
--- a/source/blender/blenkernel/intern/customdata.c
+++ b/source/blender/blenkernel/intern/customdata.c
@@ -809,7 +809,7 @@ static void layerCopyValue_mloopuv(const void *source, void 
*dest, const int mix
                copy_v2_v2(luv2->uv, luv1->uv);
        }
        else {
-               interp_v2_v2v2(luv2->uv, luv1->uv, luv2->uv, mixfactor);
+               interp_v2_v2v2(luv2->uv, luv2->uv, luv1->uv, mixfactor);
        }
 }

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
http://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to