We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ccc59c commit 90e30c2Copy full SHA for 90e30c2
gradle/project-info.gradle
@@ -3,7 +3,7 @@
3
// -----------------------------------------------------------------------------
4
ext.publishing.artifactId = project.name.toLowerCase()
5
ext.publishing.groupId = 'eu.mihosoft.jcsg.ext.mesh'
6
-ext.publishing.versionId = '0.5.0'
+ext.publishing.versionId = '0.5.1'
7
8
ext.publishing.developerName = 'Michael Hoffer'
9
ext.publishing.developerAlias = 'miho'
src/main/resources/eu/mihosoft/jcsg/ext/mesh/repair.lua
@@ -86,4 +86,9 @@ end
86
if counter >= maxIter then
87
print(" -> ERROR while fixing mesh")
88
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.")
94
end
0 commit comments