From efc70924761b23a87bf5cb010b6cc762832dcdea Mon Sep 17 00:00:00 2001
From: Christophe Geuzaine <cgeuzaine@ulg.ac.be>
Date: Sat, 16 Dec 2006 15:53:03 +0000
Subject: [PATCH] pretty print

---
 Geo/GModel.h | 16 +++++++---------
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/Geo/GModel.h b/Geo/GModel.h
index 4c4d826ed3..11fb1b3e0c 100644
--- a/Geo/GModel.h
+++ b/Geo/GModel.h
@@ -139,9 +139,14 @@ class GModel
   virtual std::set<int> &getMeshPartitions() { return meshPartitions; }
   virtual std::set<int> &recomputeMeshPartitions();
 
-  // deletes all the partitions
+  // Deletes all the partitions
   virtual void deleteMeshPartitions();
 
+  // Get or set the global mesh size for the model (default value is a
+  // tenth of the size of the domain)
+  double getMeshSize();
+  void setMeshSize(const double s) {meshSize = s;}
+
   // A container for smooth normals
   smooth_normals *normals;
 
@@ -162,7 +167,6 @@ class GModel
   int readOCCSTEP(const std::string &name);
   void deleleOCCInternals();
 
-
   // Mesh IO
   // =========================================
 
@@ -195,15 +199,9 @@ class GModel
   int writeBDF(const std::string &name, int format=0, bool saveAll=false, 
 	       double scalingFactor=1.0);
 
-  // IO for CGNS files
+  // CFD General Notation System files
   int readCGNS(const std::string &name);
   int writeCGNS(const std::string &name, double scalingFactor=1.0);
-
-  // returns the global mesh size for the model
-  // default value is a tenth of the size of the domain  
-
-  double getMeshSize () ;
-  void  setMeshSize (const double s) {meshSize = s;}  
 };
 
 #endif
-- 
GitLab