Skip to content

Commit 90e30c2

Browse files
committed
fixes saving-file bug in repair method
1 parent 9ccc59c commit 90e30c2

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

gradle/project-info.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// -----------------------------------------------------------------------------
44
ext.publishing.artifactId = project.name.toLowerCase()
55
ext.publishing.groupId = 'eu.mihosoft.jcsg.ext.mesh'
6-
ext.publishing.versionId = '0.5.0'
6+
ext.publishing.versionId = '0.5.1'
77

88
ext.publishing.developerName = 'Michael Hoffer'
99
ext.publishing.developerAlias = 'miho'

src/main/resources/eu/mihosoft/jcsg/ext/mesh/repair.lua

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,4 +86,9 @@ end
8686
if counter >= maxIter then
8787
print(" -> ERROR while fixing mesh")
8888
do return 1 end -- quit with exit code
89+
end
90+
91+
print("> saving "..fileName)
92+
if SaveMesh(mesh, fileName)==false then
93+
print(" -> ERROR while saving file.")
8994
end

0 commit comments

Comments
 (0)