FEM: code formating, delete commented code:

We gone have git to retrieve changes made in history, if needed
This commit is contained in:
Bernd Hahnebach
2019-06-16 22:45:44 +02:00
committed by GitHub
parent 823f4b6644
commit d8b28a111b

View File

@@ -46,14 +46,6 @@ def exportMeshToTetGenPoly(meshToExport, filePath, beVerbose=1):
f = open(filePath, 'w')
f.write("# This file was generated from FreeCAD geometry\n")
f.write("# Part 1 - node list\n")
'''
f.write("%(TotalNumOfPoints)i %(NumOfDimensions)i %(NumOfProperties)i %(BoundaryMarkerExists)i\n" % {
'TotalNumOfPoints': len(allVertices),
'NumOfDimensions': 3,
'NumOfProperties': 0,
'BoundaryMarkerExists': 0
})
'''
f.write(
"TotalNumOfPoints: {}, NumOfDimensions; {}, "
"NumOfProperties: {}, BoundaryMarkerExists: {}\n"