[MOAB-dev] r5903 - MOAB/trunk/itaps/igeom

iulian at mcs.anl.gov iulian at mcs.anl.gov
Fri Dec 7 09:08:36 CST 2012


Author: iulian
Date: 2012-12-07 09:08:36 -0600 (Fri, 07 Dec 2012)
New Revision: 5903

Modified:
   MOAB/trunk/itaps/igeom/FBiGeom_MOAB.cpp
Log:
another one found by meshkit :)
camal surface mesher really wants to know if the surface is periodic in any direction
we are not supporting that, but we still need to return that the mesh-based surface is not periodic, in any direction


Modified: MOAB/trunk/itaps/igeom/FBiGeom_MOAB.cpp
===================================================================
--- MOAB/trunk/itaps/igeom/FBiGeom_MOAB.cpp	2012-12-06 19:54:54 UTC (rev 5902)
+++ MOAB/trunk/itaps/igeom/FBiGeom_MOAB.cpp	2012-12-07 15:08:36 UTC (rev 5903)
@@ -1117,9 +1117,12 @@
                             int* , int* , int* err) {
   RETURN(iBase_NOT_SUPPORTED);
 }
-void FBiGeom_isEntPeriodic(FBiGeom_Instance instance, iBase_EntityHandle ,
-                           int* , int* , int* err) {
-  RETURN(iBase_NOT_SUPPORTED);
+void FBiGeom_isEntPeriodic(FBiGeom_Instance /*instance*/, iBase_EntityHandle /*entity_handle*/,
+                           int* in_u, int* in_v , int* err) {
+  *in_u = 0;
+  *in_v = 0;
+  *err = 0;
+  return;
 }
 void FBiGeom_isArrPeriodic(FBiGeom_Instance instance,
                            iBase_EntityHandle const* , int ,



More information about the moab-dev mailing list