Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorover0219 <over0219@umn.edu>2020-06-16 02:30:34 +0300
committerover0219 <over0219@umn.edu>2020-06-16 02:30:34 +0300
commitadc3d113f248ca036fcb8e530aba31edc24cb5f2 (patch)
treeca23ecd99bf4984cab09ece462020343c5fae683 /intern/tetgen/tetgen_api.cpp
parent4ff3bb13e35fb190c8510bf4daa7ded0a0c3b777 (diff)
improved API for less for-all-verts loops
Diffstat (limited to 'intern/tetgen/tetgen_api.cpp')
-rw-r--r--intern/tetgen/tetgen_api.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/intern/tetgen/tetgen_api.cpp b/intern/tetgen/tetgen_api.cpp
index 50b8201caac..33115411d82 100644
--- a/intern/tetgen/tetgen_api.cpp
+++ b/intern/tetgen/tetgen_api.cpp
@@ -101,14 +101,14 @@ static void make_tetgenio(
bool tetgen_resmesh(TetGenRemeshData *tg)
{
// float maxvol = compute_maxvol(tg->in_verts, tg->in_faces, tg->in_totfaces);
-// float quality = 1.4;
+ float quality = 1.4;
// Set up the switches
std::stringstream switches;
// switches << "Q"; // quiet
// switches << "a" << maxvol;
-// if (quality>0)
-// switches << "q" << quality;
+ if (quality>0)
+ switches << "q" << quality;
tetgenio in;