[MOAB-dev] r5228 - in MOAB/trunk: itaps/igeom src/moab

iulian at mcs.anl.gov iulian at mcs.anl.gov
Mon Nov 28 13:01:47 CST 2011


Author: iulian
Date: 2011-11-28 13:01:46 -0600 (Mon, 28 Nov 2011)
New Revision: 5228

Removed:
   MOAB/trunk/itaps/igeom/SmoothCurveEval.cpp
   MOAB/trunk/itaps/igeom/SmoothCurveEval.hpp
   MOAB/trunk/itaps/igeom/SmoothFaceEval.cpp
   MOAB/trunk/itaps/igeom/SmoothFaceEval.hpp
Modified:
   MOAB/trunk/itaps/igeom/Makefile.am
   MOAB/trunk/itaps/igeom/iGeom.h
   MOAB/trunk/itaps/igeom/iGeom_MOAB.cpp
   MOAB/trunk/itaps/igeom/iGeom_MOAB.hpp
   MOAB/trunk/src/moab/FBEngine.hpp
Log:
restore iGeom moab implementation to its former glory
eventually, FBiGeom in meshkit should point to this one. Although FBiGeom 
looks redundant now, maybe it will go away.
igeom in moab is built only if --enable-igeom is used in configuration, so it
should not affect yet anybody else
 


Modified: MOAB/trunk/itaps/igeom/Makefile.am
===================================================================
--- MOAB/trunk/itaps/igeom/Makefile.am	2011-11-28 16:11:43 UTC (rev 5227)
+++ MOAB/trunk/itaps/igeom/Makefile.am	2011-11-28 19:01:46 UTC (rev 5228)
@@ -19,9 +19,7 @@
 
 libiGeomMOAB_la_SOURCES = \
         iGeom_MOAB.hpp \
-	iGeom_MOAB.cpp \
-	SmoothCurveEval.hpp SmoothCurveEval.cpp \
-	SmoothFaceEval.hpp SmoothFaceEval.cpp 
+	iGeom_MOAB.cpp 
 
 libiGeomMOAB_la_include_HEADERS = \
 	iGeom.h \

Deleted: MOAB/trunk/itaps/igeom/SmoothCurveEval.cpp
===================================================================
--- MOAB/trunk/itaps/igeom/SmoothCurveEval.cpp	2011-11-28 16:11:43 UTC (rev 5227)
+++ MOAB/trunk/itaps/igeom/SmoothCurveEval.cpp	2011-11-28 19:01:46 UTC (rev 5228)
@@ -1,425 +0,0 @@
-/*
- * SmoothCurveEval.cpp
- *
- *  Created on: Jun 9, 2010
- *      Author: iulian
- */
-
-#include "SmoothCurveEval.hpp"
-//#include "SmoothVertex.hpp"
-#include "SmoothFaceEval.hpp"
-#include "assert.h"
-
-#include "moab/GeomTopoTool.hpp"
-
-using namespace moab;
-
-SmoothCurveEval::SmoothCurveEval(moab::Interface * mb, moab::EntityHandle curve)
-{
-	//_mbOut->create_meshset(MESHSET_ORDERED, _oSet);
-	/*_cmlEdgeMesher = new CMLEdgeMesher (this, CML::STANDARD);
-	_cmlEdgeMesher->set_sizing_function(CML::LINEAR_SIZING);*/
-	_leng = 0; // not initialized
-	_edgeTag = 0; // not initialized
-	_mb = mb;
-	_set = curve;
-}
-SmoothCurveEval::~SmoothCurveEval() {
-	// TODO Auto-generated destructor stub
-}
-


More information about the moab-dev mailing list