From dfc1b8428e01e1505db1082c45b6f3cd11af3ae0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 29 Apr 2010 18:40:33 +0000 Subject: [PATCH] missed this in recent api edits --- release/scripts/op/uvcalc_smart_project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/scripts/op/uvcalc_smart_project.py b/release/scripts/op/uvcalc_smart_project.py index 916940d1384..e0854f3720b 100644 --- a/release/scripts/op/uvcalc_smart_project.py +++ b/release/scripts/op/uvcalc_smart_project.py @@ -963,7 +963,7 @@ def main(context, island_margin, projection_limit): newProjectMeshFaces.append(tempMeshFaces.pop(fIdx)) # Add the average of all these faces normals as a projectionVec - averageVec = Vector(0.0, 0.0, 0.0) + averageVec = Vector((0.0, 0.0, 0.0)) if USER_AREA_WEIGHT: for fprop in newProjectMeshFaces: averageVec += (fprop.no * fprop.area)