From 045f3d25541b96d6cb986df5a918621d4893c660 Mon Sep 17 00:00:00 2001
From: Aaron Keith <aaroninusa@gmail.com>
Date: Sun, 12 Apr 2020 15:06:56 +1200
Subject: [PATCH] Fixed bug with inverted normals for the counter sink bolt

---
 add_mesh_BoltFactory/createMesh.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/add_mesh_BoltFactory/createMesh.py b/add_mesh_BoltFactory/createMesh.py
index d03e4730a..2985ddeaf 100644
--- a/add_mesh_BoltFactory/createMesh.py
+++ b/add_mesh_BoltFactory/createMesh.py
@@ -626,7 +626,7 @@ def Create_CounterSink_Head(HOLE_DIA, HEAD_DIA, SHANK_DIA, HEIGHT, RAD1, DIV_COU
     sVerts, sFaces = SpinDup(verts, faces, 360, DIV_COUNT, 'z')
     sVerts.extend(verts)    # add the start verts to the Spin verts to complete the loop
 
-    faces.extend(Build_Face_List_Quads(FaceStart, Row - 1, DIV_COUNT, 1))
+    faces.extend(Build_Face_List_Quads(FaceStart, Row - 1, DIV_COUNT))
 
     return sVerts, faces, HEIGHT
 
-- 
GitLab