From 1d55d03d7511c744d196b89be02cc69a15c0dd80 Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Sat, 13 Jun 2009 10:49:37 +0000
Subject: [PATCH] cleanup

---
 Mesh/meshGRegion.cpp                  | 12 ++---
 Mesh/meshGRegionDelaunayInsertion.cpp | 24 +++++-----
 contrib/Tetgen/refine.cxx             |  6 +++
 utils/api_demos/Makefile              | 19 ++++----
 utils/api_demos/mainAntTweakBar.cpp   | 36 +++++++++-----
 utils/api_demos/mainGlut.cpp          |  6 +--
 utils/api_demos/mainOcc.cpp           | 17 +++----
 utils/api_demos/mainPost.cpp          | 69 ++++++++++++---------------
 8 files changed, 102 insertions(+), 87 deletions(-)

diff --git a/Mesh/meshGRegion.cpp b/Mesh/meshGRegion.cpp
index 5f7557cb8d..701113ba8e 100644
--- a/Mesh/meshGRegion.cpp
+++ b/Mesh/meshGRegion.cpp
@@ -218,7 +218,8 @@ void TransferTetgenMesh(GRegion *gr, tetgenio &in, tetgenio &out,
 	  }
 	  else{
 	    v1b = new MVertex(v[j]->x(), v[j]->y(), v[j]->z(),gf);	  
-	    Msg::Warning("The point was not projected back to the surface (%g %g %g)", v[j]->x(), v[j]->y(), v[j]->z());
+	    Msg::Warning("The point was not projected back to the surface (%g %g %g)", 
+                         v[j]->x(), v[j]->y(), v[j]->z());
 	  }
 	}
 	else{
@@ -292,10 +293,10 @@ void MeshDelaunayVolume(std::vector<GRegion*> &regions)
         Msg::Info("%d faces self-intersect", out.numberoftrifaces);
         for (int i = 0; i < out.numberoftrifaces; i++){
           Msg::Info("face (%d %d %d) on model face %d",
-              numberedV[out.trifacelist[i * 3 + 0] - 1]->getNum(),
-              numberedV[out.trifacelist[i * 3 + 1] - 1]->getNum(),
-              numberedV[out.trifacelist[i * 3 + 2] - 1]->getNum(),
-              out.trifacemarkerlist[i]);
+                    numberedV[out.trifacelist[i * 3 + 0] - 1]->getNum(),
+                    numberedV[out.trifacelist[i * 3 + 1] - 1]->getNum(),
+                    numberedV[out.trifacelist[i * 3 + 2] - 1]->getNum(),
+                    out.trifacemarkerlist[i]);
         }
       }
       catch (int error2){
@@ -320,7 +321,6 @@ void MeshDelaunayVolume(std::vector<GRegion*> &regions)
 
   // now do insertion of points
   insertVerticesInRegion(gr);
-  Msg::Info("Gmsh 3D Delaunay has generated %d tets", gr->tetrahedra.size());
 #endif
 }
 
diff --git a/Mesh/meshGRegionDelaunayInsertion.cpp b/Mesh/meshGRegionDelaunayInsertion.cpp
index a972ba6a82..56f77296c3 100644
--- a/Mesh/meshGRegionDelaunayInsertion.cpp
+++ b/Mesh/meshGRegionDelaunayInsertion.cpp
@@ -385,12 +385,12 @@ void adaptMeshGRegion::operator () (GRegion *gr)
       }
     }
     Msg::Info("Adaptation : START with %12.5E QBAD %12.5E QAVG %12.5E",
-        totalVolumeb, worst, avg / count);
+              totalVolumeb, worst, avg / count);
     for (int i = 0; i < nbRanges; i++){
       double low  = (double)i / nbRanges;
       double high = (double)(i + 1) / nbRanges;
       Msg::Info("Opti : %3.2f < QUAL < %3.2f : %9d elements ",
-          low, high, quality_ranges[i]);
+                low, high, quality_ranges[i]);
     }                 
   }    
     
@@ -493,7 +493,7 @@ void adaptMeshGRegion::operator () (GRegion *gr)
     }
     double t2 = Cpu();
     Msg::Info("Opti : (%d,%d,%d) = %12.5E QBAD %12.5E QAVG %12.5E (%8.3f sec)",
-        nbESwap, nbFSwap, nbReloc, totalVolumeb, worst, avg / count, t2 - t1);
+              nbESwap, nbFSwap, nbReloc, totalVolumeb, worst, avg / count, t2 - t1);
     break;
   }
   
@@ -503,7 +503,7 @@ void adaptMeshGRegion::operator () (GRegion *gr)
   
   if (nbSlivers){
     Msg::Info("Opti : %d illegal tets are still in the mesh, trying to remove them",
-        nbSlivers);
+              nbSlivers);
   }
   else{
     Msg::Info("Opti : no illegal tets in the mesh ;-)", nbSlivers);
@@ -513,7 +513,7 @@ void adaptMeshGRegion::operator () (GRegion *gr)
     double low  = (double)i / nbRanges;
     double high = (double)(i + 1) / nbRanges;
     Msg::Info("Opti : %3.2f < QUAL < %3.2f : %9d elements",
-        low, high, quality_ranges[i]);
+              low, high, quality_ranges[i]);
   }                   
   
   for (CONTAINER::iterator it = allTets.begin(); it != allTets.end(); ++it){
@@ -568,12 +568,12 @@ void gmshOptimizeMesh(GRegion *gr, const gmshQualityMeasure4Tet &qm)
       }
     }
     Msg::Info("Opti : START with %12.5E QBAD %12.5E QAVG %12.5E",
-        totalVolumeb, worst, avg / count);
+              totalVolumeb, worst, avg / count);
     for (int i = 0; i < nbRanges; i++){
       double low  = (double)i / nbRanges;
       double high = (double)(i + 1) / nbRanges;
       Msg::Info("Opti : %3.2f < QUAL < %3.2f : %9d elements",
-          low, high, quality_ranges[i]);
+                low, high, quality_ranges[i]);
     }                 
   }    
   
@@ -676,7 +676,7 @@ void gmshOptimizeMesh(GRegion *gr, const gmshQualityMeasure4Tet &qm)
     }
     double t2 = Cpu();
     Msg::Info("Opti : (%d,%d,%d) = %12.5E QBAD %12.5E QAVG %12.5E (%8.3f sec)",
-        nbESwap, nbFSwap, nbReloc, totalVolumeb, worst, avg / count, t2 - t1);
+              nbESwap, nbFSwap, nbReloc, totalVolumeb, worst, avg / count, t2 - t1);
   }
   
   if (illegals.size()){
@@ -690,7 +690,7 @@ void gmshOptimizeMesh(GRegion *gr, const gmshQualityMeasure4Tet &qm)
     double low  = (double)i / nbRanges;
     double high = (double)(i + 1) / nbRanges;
     Msg::Info("Opti : %3.2f < QUAL < %3.2f : %9d elements",
-        low, high, quality_ranges[i]);
+              low, high, quality_ranges[i]);
   }                   
 
   for (CONTAINER::iterator it = allTets.begin(); it != allTets.end(); ++it){
@@ -750,7 +750,7 @@ void insertVerticesInRegion (GRegion *gr)
       recur_classify(*it, theRegion, faces_bound, bidon, gr->model(), search);
       double _t2 = Cpu();
       Msg::Debug("found %d tets with %d faces (%g sec for the classification)",
-          theRegion.size(), faces_bound.size(), _t2 - _t1);
+                 theRegion.size(), faces_bound.size(), _t2 - _t1);
       GRegion *myGRegion = getRegionFromBoundingFaces(gr->model(), faces_bound);
       // Msg::Info("a region is found %p",myGRegion);
       if(myGRegion) // a geometrical region associated to the list of faces has been found
@@ -787,12 +787,12 @@ void insertVerticesInRegion (GRegion *gr)
     if(worst->isDeleted()){
       myFactory.Free(worst);
       allTets.erase(allTets.begin());
-      Msg::Info("Worst tet is deleted");
+      //Msg::Info("Worst tet is deleted");
     }
     else{
       if(ITER++ %5000 == 0)
         Msg::Info("%d points created -- Worst tet radius is %g",
-            vSizes.size(), worst->getRadius());
+                  vSizes.size(), worst->getRadius());
       if(worst->getRadius() < 1) break;
       double center[3];
       worst->circumcenter(center);
diff --git a/contrib/Tetgen/refine.cxx b/contrib/Tetgen/refine.cxx
index fd4dc34f52..6a13e9771d 100644
--- a/contrib/Tetgen/refine.cxx
+++ b/contrib/Tetgen/refine.cxx
@@ -179,12 +179,16 @@ void tetgenmesh::repairencsegs()
 void tetgenmesh::enforcequality()
 {
   face shloop;
+  REAL bakeps;
   long bakptcount;
 
   if (!b->quiet) {
     printf("Conforming Delaunay meshing.\n");
   }
 
+  bakeps = b->epsilon;  // Bakup the epsilon.
+  b->epsilon = 0;
+
   // Initialize the pool for storing encroched segments.
   badsegpool = new memorypool(sizeof(badface), SUBPERBLOCK, POINTER, 0);
 
@@ -238,6 +242,8 @@ void tetgenmesh::enforcequality()
   delete tg_botshells;
 
   delete badsegpool;
+
+  b->epsilon = bakeps;  // Restore the epsilon.
 }
 
 #endif // #ifndef refineCXX
diff --git a/utils/api_demos/Makefile b/utils/api_demos/Makefile
index 7004b854e1..60fe1d09da 100644
--- a/utils/api_demos/Makefile
+++ b/utils/api_demos/Makefile
@@ -1,5 +1,5 @@
 #
-# how to build a standalone 64 bit gmsh lib on OSX:
+# how to build a standalone 64 bit gmsh graphics lib on OSX:
 # 
 #   export CC="gcc -m64"
 #   export CXX="g++ -m64"
@@ -10,13 +10,16 @@
 # 
 
 mainAntTweakBar: mainAntTweakBar.cpp
-	g++ -m64 -o mainAntTweakBar -Iinclude mainAntTweakBar.cpp -Llib\
-          -lGmsh -lAntTweakBar\
-          -framework OpenGL -framework GLUT -framework Cocoa -framework ApplicationServices\
-          -llapack -lblas -lz -lm
+	g++ -g -m64 -o mainAntTweakBar -Iinclude mainAntTweakBar.cpp -Llib\
+          -lGmsh -lAntTweakBar -framework OpenGL -framework GLUT -framework Cocoa\
+          -framework ApplicationServices -llapack -lblas -lz -lm
 
 mainGlut: mainGlut.cpp
-	g++ -m64 -o mainGlut -Iinclude mainGlut.cpp -Llib -lGmsh\
-          -framework OpenGL -framework GLUT -framework Cocoa -framework ApplicationServices\
-          -llapack -lblas -lz -lm
+	g++ -g -m64 -o mainGlut -Iinclude mainGlut.cpp -Llib -lGmsh\
+          -framework OpenGL -framework GLUT -framework Cocoa\
+          -framework ApplicationServices -llapack -lblas -lz -lm
+
+mainPost: mainPost.cpp
+	g++ -g -m64 -o mainPost -Iinclude mainPost.cpp -Llib -lGmsh\
+          -framework ApplicationServices -llapack -lblas -lz -lm
 
diff --git a/utils/api_demos/mainAntTweakBar.cpp b/utils/api_demos/mainAntTweakBar.cpp
index 52a4970054..ece37a37bd 100644
--- a/utils/api_demos/mainAntTweakBar.cpp
+++ b/utils/api_demos/mainAntTweakBar.cpp
@@ -70,38 +70,50 @@ void keyboard(unsigned char key, int x, int y)
   glutPostRedisplay();
 }
 
-static int xprev = 0, yprev = 0, specialkey = 0;
+static mousePosition clickPos, prevPos;
+static int specialKey = 0;
 
 void mouseMotion(int x, int y)
 {
   if(TwEventMouseMotionGLUT(x, y)) return;
   int w = ctx->viewport[2]; 
   int h = ctx->viewport[3];
-  if(specialkey == GLUT_ACTIVE_SHIFT){
-    double dx = x - xprev;
-    double dy = y - yprev;
+
+  mousePosition currPos;
+  currPos.set(ctx, x, y);
+
+  if(specialKey == GLUT_ACTIVE_SHIFT){
+    double dx = currPos.win[0] - prevPos.win[0];
+    double dy = currPos.win[1] - prevPos.win[1];
     if(fabs(dy) > fabs(dx)) {
       double fact = (4. * fabs(dy) + h) / (double)h;
       ctx->s[0] *= ((dy > 0) ? fact : 1. / fact);
       ctx->s[1] = ctx->s[0];
       ctx->s[2] = ctx->s[0];
+      clickPos.recenter(ctx);
     }
   }
+  else if(specialKey == GLUT_ACTIVE_ALT){
+    ctx->t[0] += (currPos.wnr[0] - clickPos.wnr[0]);
+    ctx->t[1] += (currPos.wnr[1] - clickPos.wnr[1]);
+    ctx->t[2] = 0.;
+  }
   else{
-    ctx->addQuaternion((2. * xprev - w) / w, (h - 2. * yprev) / h,
-                       (2. * x - w) / w, (h - 2. * y) / h);
+    ctx->addQuaternion
+      ((2. * prevPos.win[0] - w) / w, (h - 2. * prevPos.win[1]) / h,
+       (2. * currPos.win[0] - w) / w, (h - 2. * currPos.win[1]) / h);
   }
-  xprev = x;
-  yprev = y;
+
+  prevPos.set(ctx, x, y);
   glutPostRedisplay();
 }
 
 void mouseButton(int button, int state, int x, int y)
 {
   if(TwEventMouseButtonGLUT(button, state, x, y)) return;
-  specialkey = glutGetModifiers();
-  xprev = x;
-  yprev = y;
+  specialKey = glutGetModifiers();
+  clickPos.set(ctx, x, y);
+  prevPos.set(ctx, x, y);
 }
 
 // AntTweakBar callbacks
@@ -207,7 +219,7 @@ int main(int argc, char **argv)
   TwGLUTModifiersFunc(glutGetModifiers);
 
   TwBar *bar = TwNewBar("Options");
-  TwDefine(" Options size='200 400' "); // color='0 0 0' alpha=128");
+  TwDefine(" Options size='200 400' color='50 50 50' alpha=128");
   {
     TwEnumVal axesEV[6] = { {0, "None"}, {1, "Simple axes"}, {2, "Box"}, 
                             {3, "Full grid"}, {4, "Open grid"}, {5, "Ruler"} };
diff --git a/utils/api_demos/mainGlut.cpp b/utils/api_demos/mainGlut.cpp
index 370232840a..ef648d5644 100644
--- a/utils/api_demos/mainGlut.cpp
+++ b/utils/api_demos/mainGlut.cpp
@@ -97,9 +97,9 @@ void mouse(int button, int state, int x, int y)
 int main(int argc, char **argv)
 {
   GmshInitialize(argc, argv);
-  GmshSetOption("General", "Terminal", 1);
-  GmshSetOption("View", "IntervalsType", 1);
-  GmshSetOption("View", "AdaptVisualizationGrid", 1);
+  GmshSetOption("General", "Terminal", 1.);
+  GmshSetOption("View", "IntervalsType", 1.);
+  GmshSetOption("View", "AdaptVisualizationGrid", 1.);
   GmshSetOption("View", "TargetError", 0.00001);
   GmshSetOption("View", "MaxRecursionLevel", 3.); 
 
diff --git a/utils/api_demos/mainOcc.cpp b/utils/api_demos/mainOcc.cpp
index e209424824..8a6780355a 100644
--- a/utils/api_demos/mainOcc.cpp
+++ b/utils/api_demos/mainOcc.cpp
@@ -1,18 +1,19 @@
 // g++ -I/usr/local/opencascade/inc driverOCC.cpp -lGmsh -L/usr/local/opencascade/lib -lTKSTEP -lTKSTEP209 -lTKSTEPAttr -lTKSTEPBase -lTKIGES -lTKXSBase -lTKOffset -lTKFeat -lTKFillet -lTKBool -lTKShHealing -lTKMesh -lTKHLR -lTKBO -lTKPrim -lTKTopAlgo -lTKGeomAlgo -lTKBRep -lTKGeomBase -lTKG3d -lTKG2d -lTKAdvTools -lTKMath -lTKernel -lm
 
-#if !defined(HAVE_NO_OCC_CONFIG_H)
-#include "config.h"
-#endif
-#include "TopoDS_Shape.hxx"
-#include "BRep_Tool.hxx"
-#include "BRep_Builder.hxx"
-#include "BRepTools.hxx"
-
 #include <stdio.h>
 #include <gmsh/Gmsh.h>
+#include <gmsh/GmshConfig.h>
 #include <gmsh/GModel.h>
 #include <gmsh/MElement.h>
 
+#if !defined(HAVE_NO_OCC_CONFIG_H)
+#include "config.h"
+#endif
+#include <TopoDS_Shape.hxx>
+#include <BRep_Tool.hxx>
+#include <BRep_Builder.hxx>
+#include <BRepTools.hxx>
+
 class mymsg : public GmshMessage{
 private:
   GModel *_model;
diff --git a/utils/api_demos/mainPost.cpp b/utils/api_demos/mainPost.cpp
index 1f6ba0fbaa..207b27c749 100644
--- a/utils/api_demos/mainPost.cpp
+++ b/utils/api_demos/mainPost.cpp
@@ -1,48 +1,41 @@
-// configure, compile and install Gmsh as a library with
-//
-//   ./configure --disable-gui
-//   make install-lib
-//
-// Then compile this driver with "g++ driver.cpp -lGmsh -llapack -lblas"
-
-#include <stdio.h>
 #include <gmsh/Gmsh.h>
 #include <gmsh/GModel.h>
-#include <gmsh/MElement.h>
-
-    std::vector<GEntity*> entities;
-    GModel::current()->getEntities(entities);
-    std::map<int, std::vector<double> > d;
-    for(unsigned int i = 0; i < entities.size(); i++){
-      for(unsigned int j = 0; j < entities[i]->getNumMeshElements(); j++){
-        MElement *e = entities[i]->getMeshElement(j);
-        d[e->getNum()].push_back(e->gammaShapeMeasure());
-      }
-    }
-    new PView(name, "ElementData", GModel::current(), d);
-    PluginManager::instance()->setPluginOption("CutPlane", "A", 1.); 
-    PluginManager::instance()->setPluginOption("CutPlane", "B", 0.); 
-    PluginManager::instance()->setPluginOption("CutPlane", "C", 0.); 
-    PluginManager::instance()->setPluginOption("CutPlane", "D", -0.05); 
-    PluginManager::instance()->setPluginOption("CutPlane", "iView", 0.); 
-    PluginManager::instance()->action("CutPlane", "Run", 0);
+#include <gmsh/MVertex.h>
+#include <gmsh/PView.h>
+#include <gmsh/PViewData.h>
+#include <gmsh/PluginManager.h>
 
 int main(int argc, char **argv)
 {
   GmshInitialize(argc, argv);
-  GmshSetOption("Mesh", "Algorithm", 5);
+  GmshSetOption("General", "Terminal", 1.);
+
+  // load a geometry and mesh it
   GModel *m = new GModel();
-  m->readGEO("../../tutorial/t5.geo");
-  m->mesh(3);
-  for(GModel::riter it = m->firstRegion(); it != m->lastRegion(); ++it){
-    GRegion *r = *it;
-    printf("volume %d contains %d elements:\n", r->tag(), r->getNumMeshElements());
-    for(unsigned int i = 0; i < r->getNumMeshElements(); i++)
-      printf(" %d", r->getMeshElement(i)->getNum());
-    printf("\n");
+  m->readGEO("../../tutorial/t1.geo");
+  m->mesh(2);
+
+  // create a node-based post-processing dataset
+  std::vector<GEntity*> entities;
+  m->getEntities(entities);
+  std::map<int, std::vector<double> > d;
+  for(unsigned int i = 0; i < entities.size(); i++){
+    for(unsigned int j = 0; j < entities[i]->getNumMeshVertices(); j++){
+      MVertex *v = entities[i]->getMeshVertex(j);
+      d[v->getNum()].push_back(v->x());
+    }
   }
-  m->writeMSH("test.msh");
-  m->writeUNV("test.unv");
-  delete m;
+  PView *p = new PView("f(x,y,z) = x", "NodeData", m, d);
+  p->getData()->writeMSH("f.msh");
+  
+  // use a plugin on the dataset
+  PluginManager::instance()->setPluginOption("CutPlane", "A", 0.); 
+  PluginManager::instance()->setPluginOption("CutPlane", "B", 1.); 
+  PluginManager::instance()->setPluginOption("CutPlane", "C", 0.); 
+  PluginManager::instance()->setPluginOption("CutPlane", "D", -0.05); 
+  PluginManager::instance()->setPluginOption("CutPlane", "iView", 0.); 
+  PluginManager::instance()->action("CutPlane", "Run", 0);
+  PView::list.back()->getData()->writeMSH("fcut.msh");
+
   GmshFinalize();
 }
-- 
GitLab