Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Keith <aaroninusa@gmail.com>2020-04-12 06:06:56 +0300
committerAaron Keith <aaroninusa@gmail.com>2020-04-12 06:06:56 +0300
commit045f3d25541b96d6cb986df5a918621d4893c660 (patch)
treefb3b775b419f2166da70f4c7ebdbb29eadbd9920 /add_mesh_BoltFactory
parentdfadb306b0e93b894c0639379720fd2414b6b0ec (diff)
Fixed bug with inverted normals for the counter sink bolt
Diffstat (limited to 'add_mesh_BoltFactory')
-rw-r--r--add_mesh_BoltFactory/createMesh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/add_mesh_BoltFactory/createMesh.py b/add_mesh_BoltFactory/createMesh.py
index d03e4730..2985ddea 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