Fixed bug with inverted normals for the lock nut

This commit is contained in:
Aaron Keith 2020-04-13 12:24:51 +12:00
parent d26c6b61fa
commit 8d8831d943
1 changed files with 1 additions and 1 deletions

View File

@ -1516,7 +1516,7 @@ def add_Nylon_Head(OUTSIDE_RADIUS, Z_LOCATION, DIV_COUNT):
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))
faces.extend(Build_Face_List_Quads(FaceStart, Row - 1, DIV_COUNT,1))
return Move_Verts_Up_Z(sVerts, 0), faces, Lowest_Z_Vert