[cgma-dev] r5220 - cgm/trunk/test

jiangtao_ma at yahoo.com jiangtao_ma at yahoo.com
Fri Nov 18 12:47:07 CST 2011


Author: janehu
Date: 2011-11-18 12:47:06 -0600 (Fri, 18 Nov 2011)
New Revision: 5220

Added:
   cgm/trunk/test/modify.cpp_5163
   cgm/trunk/test/r_w.cpp_4775
   cgm/trunk/test/subtract.cpp_5170
Modified:
   cgm/trunk/test/modify.cpp
   cgm/trunk/test/r_w.cpp
   cgm/trunk/test/subtract.cpp
Log:
Updated for code changes in version5219

Modified: cgm/trunk/test/modify.cpp
===================================================================
--- cgm/trunk/test/modify.cpp	2011-11-18 18:37:42 UTC (rev 5219)
+++ cgm/trunk/test/modify.cpp	2011-11-18 18:47:06 UTC (rev 5220)
@@ -796,7 +796,7 @@
   assert(free_entities.size() == 0);
  
   from_body  = gmti->brick(4, 4, 4);
-  CubitVector v_move9(2,3,2);
+  CubitVector v_move9(2,5,2);
   gti->translate(from_body,v_move9); 
   ref_faces.clean_out();
   from_body->ref_faces(ref_faces);

Copied: cgm/trunk/test/modify.cpp_5163 (from rev 5163, cgm/trunk/test/modify.cpp)
===================================================================
--- cgm/trunk/test/modify.cpp_5163	                        (rev 0)
+++ cgm/trunk/test/modify.cpp_5163	2011-11-18 18:47:06 UTC (rev 5220)
@@ -0,0 +1,1381 @@
+/**
+ * \file makept.cpp
+ *
+ * \brief makept, another simple C++ driver for CGM
+ *
+ * This program acts as a simple driver for CGM.  It reads in a geometry,
+ * and performs varies checks for bodies, surfaces, curves and vertices.
+ */
+
+#undef NDEBUG
+#include <cassert>
+
+#include "GeometryModifyTool.hpp"
+#include "GeometryQueryTool.hpp"
+#include "OCCQueryEngine.hpp"
+#include "CubitMessage.hpp"
+#include "Body.hpp"
+#include "RefVolume.hpp"
+#include "RefFace.hpp"
+#include "RefEdge.hpp"
+#include "RefVertex.hpp"
+#include "CastTo.hpp"
+#include "OCCModifyEngine.hpp"
+#include "OCCLump.hpp"
+#include "OCCBody.hpp"
+#include "OCCSurface.hpp"
+#include "OCCCurve.hpp"
+#include "OCCShell.hpp"
+#include "TopoDS_Shape.hxx"
+#include "InitCGMA.cpp"
+#include "CubitCompat.hpp"
+


More information about the cgma-dev mailing list