[MOAB-dev] r5825 - MOAB/trunk/examples

iulian at mcs.anl.gov iulian at mcs.anl.gov
Tue Oct 23 13:26:34 CDT 2012


Author: iulian
Date: 2012-10-23 13:26:34 -0500 (Tue, 23 Oct 2012)
New Revision: 5825

Removed:
   MOAB/trunk/examples/IntxMeshesOnSphere.cpp
   MOAB/trunk/examples/eulerHomme.vtk
   MOAB/trunk/examples/lagrangeHomme.vtk
Modified:
   MOAB/trunk/examples/Makefile.am
Log:
remove the example related to intersect meshes on sphere (it is now part of
mbcslam)


Deleted: MOAB/trunk/examples/IntxMeshesOnSphere.cpp
===================================================================
--- MOAB/trunk/examples/IntxMeshesOnSphere.cpp	2012-10-23 18:18:56 UTC (rev 5824)
+++ MOAB/trunk/examples/IntxMeshesOnSphere.cpp	2012-10-23 18:26:34 UTC (rev 5825)
@@ -1,1209 +0,0 @@
-/*
- * IntxMeshesOnSphere.cpp
- *
- *  This test is for intersection of 2d meshes on the same sphere; the meshes are formed by quads
- *
- *  inputs are 2 meshes, vtk format, output will be another mesh, m3, with the common part
- *    intersected
- *
- *  Created on: Sep 2, 2012
- *      Author: iulian
- */
-
-#include <iostream>
-#include <sstream>
-#include <time.h>
-#include <stdlib.h>
-#include <stdio.h>
-#include <string.h>
-#include "moab/Core.hpp"
-#include "moab/Interface.hpp"
-#include "moab/Range.hpp"
-#include "moab/CartVect.hpp"
-
-using namespace std;
-using namespace moab;
-
-#define STRINGIFY_(X) #X
-#define STRINGIFY(X) STRINGIFY_(X)
-
-#include <queue>
-//#include <map>
-#include <vector>
-#include <iostream>
-#include <fstream>
-#include <math.h>
-
-// we should maybe check that the meshes are correct, completely
-// covering spheres and not leaving gaps
-EntityHandle mbs1; // set 1, blue triangles
-EntityHandle mbs2;
-EntityHandle outSet;
-Interface * mb; // global
-double R; // radius; should be input to the problem;
-
-Tag BlueFlagTag; // to mark blue quads already considered
-


More information about the moab-dev mailing list