Skip to content

Commit

Permalink
FEM: meshtools, fix regression introduced with 63f3453
Browse files Browse the repository at this point in the history
  • Loading branch information
berndhahnebach committed Mar 1, 2020
1 parent b322969 commit 2d6aa10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Mod/Fem/femmesh/meshtools.py
Expand Up @@ -1550,7 +1550,8 @@ def build_mesh_faces_of_volume_elements(
for i in node_numbers:
# node_number starts with 1
# index starts with 0 -->
# index = node number - 1i -= 1
# index = node number - 1
i -= 1
face_nodes.append(femelement_table[veID][i])
face_table[veID] = face_nodes # reset the entry in face_table
# FreeCAD.Console.PrintMessage(" --> {}\n".format(face_table[veID]))
Expand Down

0 comments on commit 2d6aa10

Please sign in to comment.