cgma-dev
Threads by month
- ----- 2026 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
December 2008
- 6 participants
- 84 discussions
Author: janehu
Date: 2008-12-08 13:57:06 -0600 (Mon, 08 Dec 2008)
New Revision: 2473
Added:
cgm/trunk/README.OCC
Log:
First version for read me for CGM on OCC.
Added: cgm/trunk/README.OCC
===================================================================
--- cgm/trunk/README.OCC (rev 0)
+++ cgm/trunk/README.OCC 2008-12-08 19:57:06 UTC (rev 2473)
@@ -0,0 +1,80 @@
+=====================================
+Read Me for CGM on OCC
+=====================================
+
+CGM can be built upon the ACIS solid modeling engine or OCC solid
+modeling engine, but also includes geometry capability developed
+beside and on top of them.
+CGM is supported on Sun Solaris, SGI, HP, Linux and Windows NT
+platforms. CGM also includes support for loading OCC
+models on parallel computers.
+CGM is being released into the public domain under an LGPL license;
+the OCC-based engine is available from Opencascade open source downloads.
+
+=====================================
+Build OCC-based engine
+=====================================
+
+Go to http://www.opencascade.org/getocc/download/loadocc/ and get
+desired source files.
+
+Untar the files, then under OpenCASCADE6.3.0/ros directory, to
+autoreconf -fi
+./configure (Add --prefix=dir for your install directory)
+make
+make install
+
+=====================================
+Dependencies
+=====================================
+
+CGM can be built using the CMake utility, which is "an extensible,
+open-source system that manages the build process in an operating
+system and compiler independent manner", or (on *NIX) using a
+configure-make system. Cmake is available under an open source
+license, and can be downloaded in binary or source formats; see
+http://www.cmake.org for details.
+
+=====================================
+Compiling
+=====================================
+
+1. Unpack the source code in some directory CGM_DIR, and change
+directory into CGM_DIR.
+2a. Run cmake in that directory, using either the non-interactive
+("cmake .") or interactive ("ccmake .") version, OR
+2b. Run "./configure" in that directory, optionally specifying where
+ACIS libraries are located and other options (run "./configure -h" for
+a list of options).
+3. Make the CGM libraries by typing "make".
+4. Install the CGM libraries by typing "make install" (this installs
+the libraries to the location specified by the --prefix option to
+configure, or to /usr/local by default).
+5. Test the installation using "make test".
+
+=====================================
+Documentation, Testing, Example Applications
+=====================================
+
+Documentation for CGM is available from the CGM web page,
+http://cubit.sandia.gov/CGM.
+
+Example applications are included with the CGM distribution in the
+"test" subdirectory. Examples include importing and querying solid
+model-based geometry, and constructing OCC-based geometry. If you
+are interested in contributing examples to be included with CGM, we
+would welcome submissions; please send them to the email address
+below.
+
+=====================================
+Bugs, Correspondence, Contributing
+=====================================
+
+CGM on OCC code is now in alpha testing stage, we encourage users to
+submit bug reports (and, if desired, fixes) to cgma-dev(a)mcs.anl.gov .
+
+=====================================
+Updates
+=====================================
+
+This is the first version of the file
1
0
Author: janehu
Date: 2008-12-05 15:00:12 -0600 (Fri, 05 Dec 2008)
New Revision: 2472
Modified:
cgm/trunk/geom/OCC/OCCModifyEngine.cpp
cgm/trunk/geom/OCC/OCCShapeAttributeSet.hpp
Log:
Minor changes for memory clean up.
Modified: cgm/trunk/geom/OCC/OCCModifyEngine.cpp
===================================================================
--- cgm/trunk/geom/OCC/OCCModifyEngine.cpp 2008-12-04 19:47:25 UTC (rev 2471)
+++ cgm/trunk/geom/OCC/OCCModifyEngine.cpp 2008-12-05 21:00:12 UTC (rev 2472)
@@ -4312,7 +4312,7 @@
result_body_list.append(bodysm);
continue;
}
- delete acurve;
+ OCCQueryEngine::instance()->delete_solid_model_entities(acurve);
return CUBIT_SUCCESS;
}
Modified: cgm/trunk/geom/OCC/OCCShapeAttributeSet.hpp
===================================================================
--- cgm/trunk/geom/OCC/OCCShapeAttributeSet.hpp 2008-12-04 19:47:25 UTC (rev 2471)
+++ cgm/trunk/geom/OCC/OCCShapeAttributeSet.hpp 2008-12-05 21:00:12 UTC (rev 2472)
@@ -67,6 +67,8 @@
OCCShapeAttributeSet(const BRep_Builder& B);
+~OCCShapeAttributeSet(){Clear();} ;
+
//! Stores the goemetry of <S>. <br>
void AddGeometry(const TopoDS_Shape& S) ;
@@ -132,6 +134,7 @@
void ReadTriangulation(Standard_IStream& IS);
+//! Clears the content of the set.
void Clear();
void Check(const TopAbs_ShapeEnum T,TopoDS_Shape& S);
1
0
Author: kraftche
Date: 2008-12-04 13:02:10 -0600 (Thu, 04 Dec 2008)
New Revision: 2468
Added:
cgm/trunk/compat/Makefile.am
Modified:
cgm/trunk/Makefile.am
cgm/trunk/configure.in
cgm/trunk/geom/OCC/Makefile.am
Log:
o Retain --with-occ and --with-acis options during 'make distcheck'
o Include compat/new/new.h in tarball
o Include geom/OCC/OCCCoFace.hpp in tarball
Modified: cgm/trunk/Makefile.am
===================================================================
--- cgm/trunk/Makefile.am 2008-12-04 17:32:31 UTC (rev 2467)
+++ cgm/trunk/Makefile.am 2008-12-04 19:02:10 UTC (rev 2468)
@@ -1,5 +1,5 @@
AUTOMAKE_OPTIONS = foreign
-SUBDIRS = util geom init . itaps test cgm_apps
+SUBDIRS = compat util geom init . itaps test cgm_apps
# Don't loose the autoconf include path
ACLOCAL_AMFLAGS = -I m4
Added: cgm/trunk/compat/Makefile.am
===================================================================
--- cgm/trunk/compat/Makefile.am (rev 0)
+++ cgm/trunk/compat/Makefile.am 2008-12-04 19:02:10 UTC (rev 2468)
@@ -0,0 +1 @@
+EXTRA_DIST = new/new.h
Modified: cgm/trunk/configure.in
===================================================================
--- cgm/trunk/configure.in 2008-12-04 17:32:31 UTC (rev 2467)
+++ cgm/trunk/configure.in 2008-12-04 19:02:10 UTC (rev 2468)
@@ -70,10 +70,13 @@
AC_ARG_WITH( cubit,
AC_HELP_STRING([--with-cubit=<dir>],[Use CGM from CUBIT shared library]),
- [CUBIT_DIR="$withval"],[CUBIT_DIR=no])
+ [CUBIT_DIR="$withval"
+ DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --with-cubit=\"${withval}\""],
+ [CUBIT_DIR=no])
AC_ARG_WITH( CUBIT,
AC_HELP_STRING([--with-CUBIT=<dir>],[DEPRECATED. Use --with-cubit (small case)]),
- [CUBIT_DIR="$withval"])
+ [CUBIT_DIR="$withval"
+ DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --with-cubit=\"${withval}\""])
if test "x$CUBIT_DIR" == "xyes"; then
AC_MSG_ERROR([Option --with-CUBIT without specifying Cubit directory.])
elif test "x$CUBIT_DIR" != "xno"; then
@@ -147,10 +150,13 @@
AC_ARG_WITH( acis,
AC_HELP_STRING([--with-acis=<dir>],[Build with ACIS support, specify directory where ACIS is installed.]),
- [ACIS_DIR=$withval],[ACIS_DIR=no] )
+ [ACIS_DIR=$withval
+ DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --with-acis=\"${withval}\""],
+ [ACIS_DIR=no] )
AC_ARG_WITH( ACIS,
AC_HELP_STRING([--with-ACIS],[DEPRECATED. Use --wtih-acis (small case)]),
- [ACIS_DIR=$withval] )
+ [ACIS_DIR=$withval
+ DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --with-acis=\"${withval}\""] )
AC_ARG_WITH( ACIS-system, AC_HELP_STRING([--with-acis-system=SYS],
[Specify ACIS system name (e.g. linux_so), default is to autodetect.]),
[ACIS_SYSTEM=$withval],[ACIS_SYSTEM=] )
@@ -264,7 +270,8 @@
AC_ARG_WITH( occ,
[AC_HELP_STRING([--with-occ=<dir>],[OpenCascade shared library directory])],
- [occ_DIR="$withval"],
+ [occ_DIR="$withval"
+ DISTCHECK_CONFIGURE_FLAGS="$DISTCHECK_CONFIGURE_FLAGS --with-occ=\"${withval}\""],
[occ_DIR=no] )
# if user specified option (other than --without-occ)
@@ -395,6 +402,7 @@
# Output Files
################################################################################
AC_SUBST(AM_CPPFLAGS)
+AC_SUBST(DISTCHECK_CONFIGURE_FLAGS)
AC_MSG_RESULT([CXXFLAGS = $CXXFLAGS])
dnl AC_OUTPUT_COMMANDS( [if test -f util/CubitUtilConfigure.h; then true; else echo "#define CUBIT_UTIL_EXPORT" > util/CubitUtilConfigure.h; fi],
dnl [if test -f geom/CubitGeomConfigure.h; then true; else echo "#define CUBIT_GEOM_EXPORT" > geom/CubitGeomConfigure.h; fi] )
@@ -411,6 +419,7 @@
geom/parallel/Makefile
geom/virtual/Makefile
init/Makefile
+ compat/Makefile
cgm.make
itaps/Makefile
itaps/iGeom-Defs.inc
Modified: cgm/trunk/geom/OCC/Makefile.am
===================================================================
--- cgm/trunk/geom/OCC/Makefile.am 2008-12-04 17:32:31 UTC (rev 2467)
+++ cgm/trunk/geom/OCC/Makefile.am 2008-12-04 19:02:10 UTC (rev 2468)
@@ -43,6 +43,7 @@
OCCAttribSet.hpp \
OCCBody.hpp \
OCCCoEdge.hpp \
+ OCCCoFace.hpp \
OCCCurve.hpp \
OCCGeometryCreator.hpp \
OCCLoop.hpp \
1
0
Author: janehu
Date: 2008-12-04 11:32:31 -0600 (Thu, 04 Dec 2008)
New Revision: 2467
Modified:
cgm/trunk/geom/OCC/OCCQueryEngine.cpp
Log:
Fixed the problem of transformation for surface's points when drawing.
Modified: cgm/trunk/geom/OCC/OCCQueryEngine.cpp
===================================================================
--- cgm/trunk/geom/OCC/OCCQueryEngine.cpp 2008-12-04 16:44:16 UTC (rev 2466)
+++ cgm/trunk/geom/OCC/OCCQueryEngine.cpp 2008-12-04 17:32:31 UTC (rev 2467)
@@ -273,6 +273,8 @@
TopLoc_Location L;
Handle_Poly_Triangulation facets = BRep_Tool::Triangulation(*Topo_Face, L);
+ gp_Trsf tf = L.Transformation();
+
if(facets.IsNull() || facets->NbTriangles() == 0)
{
//do triangulation
@@ -336,6 +338,9 @@
for (int i = 0; i < number_points ; i ++)
{
gp_Pnt gp_pnt = points.Value(i);
+ if( !L.IsIdentity())
+ gp_pnt.Transform(tf);
+
GPoint gPnt;
gPnt.x = gp_pnt.X();
gPnt.y = gp_pnt.Y();
1
0
Author: kraftche
Date: 2008-12-04 10:44:16 -0600 (Thu, 04 Dec 2008)
New Revision: 2466
Removed:
cgm/trunk/test/unite2.occ
cgm/trunk/test/unite3.occ
cgm/trunk/test/unite4.occ
cgm/trunk/test/unite5.occ
cgm/trunk/test/unite6.occ
cgm/trunk/test/webcut_with_brick.sat
Modified:
cgm/trunk/test/Makefile.am
cgm/trunk/test/webcut.cpp
Log:
Clean up mess with test output files. Files created by tests should
*not* be checked into SVN? or included in tarballs. Such files *must*
be written to the test build directory (not the source directory if
they are different) and must be cleaned up during "make clean".
Modified: cgm/trunk/test/Makefile.am
===================================================================
--- cgm/trunk/test/Makefile.am 2008-12-04 16:23:02 UTC (rev 2465)
+++ cgm/trunk/test/Makefile.am 2008-12-04 16:44:16 UTC (rev 2466)
@@ -46,6 +46,8 @@
r_w_LDFLAGS = $(LDFLAGS) $(LINK_FLAGS)
test_occ_LDFLAGS = $(LDFLAGS) $(LINK_FLAGS)
+# Files that are used as input to tests, and therefore
+# must be included in tarball for tests to run.
EXTRA_DIST = 62_shaver1.brep \
66_shaver3.brep \
72_shaver6.brep \
@@ -54,11 +56,6 @@
beforesub.occ_ref \
beforesub2.occ_ref \
unite1.occ\
- unite2.occ\
- unite3.occ\
- unite4.occ\
- unite5.occ\
- unite6.occ\
huge.sat \
model1.sat \
model2.sat \
@@ -68,13 +65,31 @@
model6.sat \
model7.sat \
hollow.sat \
- stitch.occ_name \
- webcut_with_brick.sat \
- webcut_with_curve_loop.sat \
- webcut_with_extended_surf.sat \
- webcut_with_sheet.sat \
- webcut_with_sweep_along_curve.sat \
- webcut_with_sweep_surfaces.sat \
- webcut_with_sweep_surfaces_along_curve.sat \
- webcut_with_sweep_surfaces_rotated.sat
+ stitch.occ_name
+# Files that are created by tests, and that therefore
+# - should be removed during 'make clean'
+# - should not be included in tarball
+MOSTLYCLEANFILES = \
+ webcut_with_brick.sat \
+ webcut_with_cylinder.sat \
+ webcut_with_sheet.sat \
+ webcut_with_sweep_rotational.sat \
+ webcut_with_sweep_curves.sat \
+ webcut_with_sweep_along_curve.sat \
+ webcut_with_curve_loop.sat \
+ webcut_with_extended_surf.sat \
+ webcut_with_sweep_surfaces_rotated.sat \
+ webcut_with_sweep_surfaces.sat \
+ webcut_with_sweep_surfaces_along_curve.sat \
+ webcut_with_sweep_surfaces_perp.sat \
+ point.occ \
+ stitch.occ \
+ beforesub.occ \
+ beforesub2.occ \
+ aftersub.occ \
+ unite2.occ \
+ unite3.occ \
+ unite5.occ \
+ unite6.occ
+
Deleted: cgm/trunk/test/unite2.occ
===================================================================
--- cgm/trunk/test/unite2.occ 2008-12-04 16:23:02 UTC (rev 2465)
+++ cgm/trunk/test/unite2.occ 2008-12-04 16:44:16 UTC (rev 2466)
@@ -1,464 +0,0 @@
-DBRep_DrawableShape
-
-CASCADE Topology V1, (c) Matra-Datavision
-Locations 4
-1
- 1 0 0 0
- 0 1 0 0.5
- 0 0 1 0
-1
- 1 0 0 0
- 0 1 0 0.5
- 0 0 1 0
-2 1 1 2 1 0
-2 2 -1 1 -1 0
-Curve2ds 40
-1 0 0 0 1
-1 0 1 1 0
-1 0 -1 1 0
-1 0 1 1 0
-1 1 0 0 1
-1 0 1 1 0
-1 0 -1 1 0
-1 0 0 1 0
-1 0 0 0 -1
-1 0 0 0 1
-1 0 0 0 1
-1 0 0 1 0
-1 0 0 0 -1
-1 1 0 0 1
-1 0 0 1 0
-1 0 1 1 0
-1 1 0 0 -1
-1 1 0 0 1
-1 1 0 0 -1
-1 0 0 0 1
-1 1 0 0 1
-1 0 0 1 0
-1 0 0 1 0
-1 0 0 1 0
-1 0 0 0 -1
-1 0 0 0 1
-1 0 0 0 1
-1 0 0 1 0
-1 0 0 0 -1
-1 1 0 0 1
-1 0 0 1 0
-1 0 1 1 0
-1 1 0 0 -1
-1 1 0 0 1
-1 1 0 0 -1
-1 0 0 0 1
-1 1 0 0 1
-1 0 0 1 0
-1 0 0 1 0
-1 0 0 1 0
-Curves 20
-1 0 1 0 1 0 -0
-1 1 1 0 0 0 1
-1 0 1 1 1 0 -0
-1 0 1 0 0 0 1
-1 0 0 0 -0 1 0
-1 0 0 0 1 0 -0
-1 1 0 0 -0 1 0
-1 1 0 0 0 0 1
-1 1 0 1 0 1 0
-1 0 0 1 -0 1 0
-1 0 0 1 1 0 -0
-1 0 0 0 0 0 1
-1 0 0 0 -0 1 0
-1 0 0 0 1 0 -0
-1 1 0 0 -0 1 0
-1 1 0 0 0 0 1
-1 1 0 1 0 1 0
-1 0 0 1 -0 1 0
-1 0 0 1 1 0 -0
-1 0 0 0 0 0 1
-Polygon3D 0
-PolygonOnTriangulations 0
-Surfaces 11
-1 0 1 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 0 0 0 1 1 0 -0 -0 1 0
-1 1 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 1 0 0 1 1 0 -0 -0 1 0
-1 0 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 0 0 0 1 1 0 -0 -0 1 0
-1 0 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 0 -0 1 0 0 0 1 1 0 -0
-1 1 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 1 0 0 1 1 0 -0 -0 1 0
-Triangulations 0
-
-TShapes 55
-Ve
-1e-07
-1 1 0
-0 0
-
-0101101
-*
-Ve
-1e-07
-0 1 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 1 0 0 1
-2 1 1 0 0 1
-2 2 2 0 0 1
-0
-
-0101000
--55 0 +54 0 *
-Ve
-1e-07
-1 1 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 2 0 0 1
-2 3 3 0 0 1
-2 4 1 0 0 1
-0
-
-0101000
--52 0 +55 0 *
-Ve
-1e-07
-0 1 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 3 0 0 1
-2 5 1 0 0 1
-2 6 4 0 0 1
-0
-
-0101000
--52 0 +50 0 *
-Ed
- 1e-07 1 1 0
-1 4 0 0 1
-2 7 5 0 0 1
-2 8 1 0 0 1
-0
-
-0101000
--50 0 +54 0 *
-Wi
-
-0101000
--53 0 -51 0 +49 0 +48 0 *
-Fa
-0 1e-07 1 0
-
-0111000
-+47 0 *
-Ve
-1e-07
-0 1 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 5 0 0 1
-2 9 5 0 0 1
-2 10 2 0 0 1
-0
-
-0101000
-+45 4 -54 0 *
-Ve
-1e-07
-1 1 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 6 0 0 1
-2 11 6 0 0 1
-2 12 2 0 0 1
-0
-
-0101000
-+45 4 -43 4 *
-Ed
- 1e-07 1 1 0
-1 7 0 0 1
-2 13 3 0 0 1
-2 14 2 0 0 1
-0
-
-0101000
-+43 4 -55 0 *
-Wi
-
-0101000
--44 3 +42 3 -53 3 +41 3 *
-Fa
-0 1e-07 2 3
-
-0101000
-+40 0 *
-Ve
-1e-07
-1 1 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 8 0 0 1
-2 15 3 0 0 1
-2 16 6 0 0 1
-0
-
-0101000
-+43 4 -38 4 *
-Ed
- 1e-07 1 1 0
-1 9 0 0 1
-2 17 3 0 0 1
-2 18 4 0 0 1
-0
-
-0101000
-+38 4 -52 0 *
-Wi
-
-0101000
--37 3 +41 3 -36 3 +51 3 *
-Fa
-0 1e-07 3 3
-
-0101000
-+35 0 *
-Ve
-1e-07
-0 1 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 10 0 0 1
-2 19 5 0 0 1
-2 20 4 0 0 1
-0
-
-0101000
-+33 4 -50 0 *
-Ed
- 1e-07 1 1 0
-1 11 0 0 1
-2 21 6 0 0 1
-2 22 4 0 0 1
-0
-
-0101000
-+33 4 -38 4 *
-Wi
-
-0101000
--32 3 +31 3 -49 3 +36 3 *
-Fa
-0 1e-07 4 3
-
-0101000
-+30 0 *
-Ed
- 1e-07 1 1 0
-1 12 0 0 1
-2 23 5 0 0 1
-2 24 6 0 0 1
-0
-
-0101000
-+45 4 -33 4 *
-Wi
-
-0101000
--28 3 +44 3 -32 3 +48 3 *
-Fa
-0 1e-07 5 3
-
-0101000
-+27 0 *
-Ve
-1e-07
-0 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 13 0 0 1
-2 25 8 0 0 1
-2 26 7 0 0 1
-0
-
-0101000
-+25 0 -45 0 *
-Ve
-1e-07
-1 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 14 0 0 1
-2 27 9 0 0 1
-2 28 7 0 0 1
-0
-
-0101000
--23 0 +25 0 *
-Ed
- 1e-07 1 1 0
-1 15 0 0 1
-2 29 10 0 0 1
-2 30 7 0 0 1
-0
-
-0101000
-+23 0 -43 0 *
-Wi
-
-0101000
--24 0 +22 0 -42 3 +21 0 *
-Fa
-0 1e-07 7 0
-
-0101000
-+20 0 *
-Ve
-1e-07
-1 0 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 16 0 0 1
-2 31 10 0 0 1
-2 32 9 0 0 1
-0
-
-0101000
--18 0 +23 0 *
-Ed
- 1e-07 1 1 0
-1 17 0 0 1
-2 33 10 0 0 1
-2 34 11 0 0 1
-0
-
-0101000
-+18 0 -38 0 *
-Wi
-
-0101000
--17 0 -16 0 +21 0 +37 3 *
-Fa
-0 1e-07 10 0
-
-0101000
-+15 0 *
-Ve
-1e-07
-0 0 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 18 0 0 1
-2 35 8 0 0 1
-2 36 11 0 0 1
-0
-
-0101000
-+13 0 -33 0 *
-Ed
- 1e-07 1 1 0
-1 19 0 0 1
-2 37 9 0 0 1
-2 38 11 0 0 1
-0
-
-0101000
--18 0 +13 0 *
-Wi
-
-0101000
--12 0 +11 0 -31 3 +16 0 *
-Fa
-0 1e-07 11 0
-
-0101000
-+10 0 *
-Ed
- 1e-07 1 1 0
-1 20 0 0 1
-2 39 8 0 0 1
-2 40 9 0 0 1
-0
-
-0101000
--13 0 +25 0 *
-Wi
-
-0101000
--8 0 -12 0 +24 0 +28 3 *
-Fa
-0 1e-07 8 0
-
-0101000
-+7 0 *
-Wi
-
-0101000
--22 0 -17 0 +11 0 +8 0 *
-Fa
-0 1e-07 9 0
-
-0111000
-+5 0 *
-Sh
-
-0101000
-+46 3 -39 0 +34 0 +29 0 -26 0 -19 0 +14 0 +9 0 -6 0 -4 0
-*
-So
-
-CGM_ATTRIB ENTITY_NAME* volumeB* * *
-*
-0100000
-+3 0 *
-Co
-
-1100000
-+2 0 *
-
-+1 0
\ No newline at end of file
Deleted: cgm/trunk/test/unite3.occ
===================================================================
--- cgm/trunk/test/unite3.occ 2008-12-04 16:23:02 UTC (rev 2465)
+++ cgm/trunk/test/unite3.occ 2008-12-04 16:44:16 UTC (rev 2466)
@@ -1,464 +0,0 @@
-DBRep_DrawableShape
-
-CASCADE Topology V1, (c) Matra-Datavision
-Locations 4
-1
- 1 0 0 0
- 0 1 0 0.5
- 0 0 1 0
-1
- 1 0 0 0
- 0 1 0 0.5
- 0 0 1 0
-2 1 1 2 1 0
-2 2 -1 1 -1 0
-Curve2ds 40
-1 0 0 0 1
-1 0 0 1 0
-1 0 0 1 0
-1 0 1 1 0
-1 1 0 0 1
-1 0 0 1 0
-1 0 0 1 0
-1 0 0 1 0
-1 0 0 0 -1
-1 0 0 0 1
-1 0 0 0 1
-1 0 1 1 0
-1 0 0 0 -1
-1 1 0 0 1
-1 1 0 0 -1
-1 1 0 0 1
-1 0 -1 1 0
-1 0 1 1 0
-1 1 0 0 -1
-1 0 0 0 1
-1 1 0 0 1
-1 0 1 1 0
-1 0 -1 1 0
-1 0 0 1 0
-1 0 0 0 -1
-1 0 0 0 1
-1 0 0 0 1
-1 0 1 1 0
-1 0 0 0 -1
-1 1 0 0 1
-1 1 0 0 -1
-1 1 0 0 1
-1 0 -1 1 0
-1 0 1 1 0
-1 1 0 0 -1
-1 0 0 0 1
-1 1 0 0 1
-1 0 1 1 0
-1 0 -1 1 0
-1 0 0 1 0
-Curves 20
-1 0 0 0 1 0 -0
-1 1 0 0 0 0 1
-1 0 0 1 1 0 -0
-1 0 0 0 0 0 1
-1 0 0 0 -0 1 0
-1 0 1 0 1 0 -0
-1 1 0 0 -0 1 0
-1 1 0 1 0 1 0
-1 1 1 0 0 0 1
-1 0 0 1 -0 1 0
-1 0 1 1 1 0 -0
-1 0 1 0 0 0 1
-1 0 0 0 -0 1 0
-1 0 1 0 1 0 -0
-1 1 0 0 -0 1 0
-1 1 0 1 0 1 0
-1 1 1 0 0 0 1
-1 0 0 1 -0 1 0
-1 0 1 1 1 0 -0
-1 0 1 0 0 0 1
-Polygon3D 0
-PolygonOnTriangulations 0
-Surfaces 11
-1 0 0 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 0 0 0 1 1 0 -0 -0 1 0
-1 1 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 1 0 0 1 1 0 -0 -0 1 0
-1 0 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 1 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 0 0 0 1 1 0 -0 -0 1 0
-1 0 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 1 0 -0 1 0 0 0 1 1 0 -0
-1 1 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 1 0 0 1 1 0 -0 -0 1 0
-Triangulations 0
-
-TShapes 55
-Ve
-1e-07
-1 0 0
-0 0
-
-0101101
-*
-Ve
-1e-07
-0 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 1 0 0 1
-2 1 1 0 0 1
-2 2 2 0 0 1
-0
-
-0101000
--55 0 +54 0 *
-Ve
-1e-07
-1 0 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 2 0 0 1
-2 3 3 0 0 1
-2 4 1 0 0 1
-0
-
-0101000
--52 0 +55 0 *
-Ve
-1e-07
-0 0 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 3 0 0 1
-2 5 1 0 0 1
-2 6 4 0 0 1
-0
-
-0101000
--52 0 +50 0 *
-Ed
- 1e-07 1 1 0
-1 4 0 0 1
-2 7 5 0 0 1
-2 8 1 0 0 1
-0
-
-0101000
--50 0 +54 0 *
-Wi
-
-0101000
--53 0 -51 0 +49 0 +48 0 *
-Fa
-0 1e-07 1 0
-
-0111000
-+47 0 *
-Ve
-1e-07
-0 1 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 5 0 0 1
-2 9 5 0 0 1
-2 10 2 0 0 1
-0
-
-0101000
-+54 0 -45 0 *
-Ve
-1e-07
-1 1 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 6 0 0 1
-2 11 6 0 0 1
-2 12 2 0 0 1
-0
-
-0101000
-+45 0 -43 0 *
-Ed
- 1e-07 1 1 0
-1 7 0 0 1
-2 13 3 0 0 1
-2 14 2 0 0 1
-0
-
-0101000
-+55 0 -43 0 *
-Wi
-
-0101000
--44 0 +53 0 -42 0 +41 0 *
-Fa
-0 1e-07 2 0
-
-0101000
-+40 0 *
-Ve
-1e-07
-1 1 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 8 0 0 1
-2 15 3 0 0 1
-2 16 4 0 0 1
-0
-
-0101000
-+52 0 -38 0 *
-Ed
- 1e-07 1 1 0
-1 9 0 0 1
-2 17 3 0 0 1
-2 18 6 0 0 1
-0
-
-0101000
-+43 0 -38 0 *
-Wi
-
-0101000
--51 0 -37 0 +41 0 +36 0 *
-Fa
-0 1e-07 3 0
-
-0101000
-+35 0 *
-Ve
-1e-07
-0 1 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 10 0 0 1
-2 19 5 0 0 1
-2 20 4 0 0 1
-0
-
-0101000
-+50 0 -33 0 *
-Ed
- 1e-07 1 1 0
-1 11 0 0 1
-2 21 6 0 0 1
-2 22 4 0 0 1
-0
-
-0101000
-+33 0 -38 0 *
-Wi
-
-0101000
--32 0 +49 0 -31 0 +37 0 *
-Fa
-0 1e-07 4 0
-
-0101000
-+30 0 *
-Ed
- 1e-07 1 1 0
-1 12 0 0 1
-2 23 5 0 0 1
-2 24 6 0 0 1
-0
-
-0101000
-+45 0 -33 0 *
-Wi
-
-0101000
--48 0 -32 0 +44 0 +28 0 *
-Fa
-0 1e-07 5 0
-
-0101000
-+27 0 *
-Ve
-1e-07
-0 1 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 13 0 0 1
-2 25 8 0 0 1
-2 26 7 0 0 1
-0
-
-0101000
-+45 4 -25 0 *
-Ve
-1e-07
-1 1 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 14 0 0 1
-2 27 9 0 0 1
-2 28 7 0 0 1
-0
-
-0101000
--23 0 +25 0 *
-Ed
- 1e-07 1 1 0
-1 15 0 0 1
-2 29 10 0 0 1
-2 30 7 0 0 1
-0
-
-0101000
-+43 4 -23 0 *
-Wi
-
-0101000
--24 3 +42 0 -22 3 +21 3 *
-Fa
-0 1e-07 7 3
-
-0101000
-+20 0 *
-Ve
-1e-07
-1 1 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 16 0 0 1
-2 31 10 0 0 1
-2 32 11 0 0 1
-0
-
-0101000
-+38 4 -18 0 *
-Ed
- 1e-07 1 1 0
-1 17 0 0 1
-2 33 10 0 0 1
-2 34 9 0 0 1
-0
-
-0101000
--18 0 +23 0 *
-Wi
-
-0101000
--36 0 +21 3 -17 3 +16 3 *
-Fa
-0 1e-07 10 3
-
-0101000
-+15 0 *
-Ve
-1e-07
-0 1 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 18 0 0 1
-2 35 8 0 0 1
-2 36 11 0 0 1
-0
-
-0101000
-+33 4 -13 0 *
-Ed
- 1e-07 1 1 0
-1 19 0 0 1
-2 37 9 0 0 1
-2 38 11 0 0 1
-0
-
-0101000
--18 0 +13 0 *
-Wi
-
-0101000
--12 3 +31 0 -11 3 +17 3 *
-Fa
-0 1e-07 11 3
-
-0101000
-+10 0 *
-Ed
- 1e-07 1 1 0
-1 20 0 0 1
-2 39 8 0 0 1
-2 40 9 0 0 1
-0
-
-0101000
--13 0 +25 0 *
-Wi
-
-0101000
--28 0 +24 3 -12 3 +8 3 *
-Fa
-0 1e-07 8 3
-
-0101000
-+7 0 *
-Wi
-
-0101000
--22 0 -16 0 +11 0 +8 0 *
-Fa
-0 1e-07 9 0
-
-0111000
-+5 0 *
-Sh
-
-0101000
--46 0 -39 0 +34 0 +29 0 -26 0 -19 0 +14 0 +9 0 -6 0 +4 3
-*
-So
-
-CGM_ATTRIB ENTITY_NAME* volumeA* * *
-*
-0100000
-+3 0 *
-Co
-
-1100000
-+2 0 *
-
-+1 0
\ No newline at end of file
Deleted: cgm/trunk/test/unite4.occ
===================================================================
--- cgm/trunk/test/unite4.occ 2008-12-04 16:23:02 UTC (rev 2465)
+++ cgm/trunk/test/unite4.occ 2008-12-04 16:44:16 UTC (rev 2466)
@@ -1,562 +0,0 @@
-DBRep_DrawableShape
-
-CASCADE Topology V1, (c) Matra-Datavision
-Locations 1
-1
- 1 0 0 0
- 0 1 0 0.5
- 0 0 1 0
-Curve2ds 48
-1 0 0 1 0
-1 0 0 1 0
-1 4 0 0 -1
-1 0 0 0 1
-1 0 -4 1 0
-1 0 0 1 0
-1 0 0 0 -1
-1 0 0 0 1
-1 0 0 1 0
-1 0 4 1 0
-1 4 0 0 -1
-1 4 0 0 1
-1 0 -4 1 0
-1 0 4 1 0
-1 0 0 0 -1
-1 4 0 0 1
-1 0 0 0 1
-1 0 0 1 0
-1 4 0 0 1
-1 0 0 1 0
-1 0 0 0 1
-1 0 4 1 0
-1 4 0 0 1
-1 0 4 1 0
-1 0 0 1 0
-1 0 0 1 0
-1 1 0 0 -1
-1 0 0 0 1
-1 0 -1 1 0
-1 0 0 1 0
-1 0 0 0 -1
-1 0 0 0 1
-1 0 0 1 0
-1 0 1 1 0
-1 1 0 0 -1
-1 1 0 0 1
-1 0 -1 1 0
-1 0 1 1 0
-1 0 0 0 -1
-1 1 0 0 1
-1 0 0 0 1
-1 0 0 1 0
-1 1 0 0 1
-1 0 0 1 0
-1 0 0 0 1
-1 0 1 1 0
-1 1 0 0 1
-1 0 1 1 0
-Curves 24
-1 0 0 0 0 0 1
-1 0 0 4 -0 1 0
-1 0 4 0 0 0 1
-1 0 0 0 -0 1 0
-1 4 0 0 0 0 1
-1 4 0 4 0 1 0
-1 4 4 0 0 0 1
-1 4 0 0 -0 1 0
-1 0 0 0 1 0 -0
-1 0 0 4 1 0 -0
-1 0 4 0 1 0 -0
-1 0 4 4 1 0 -0
-1 0 0 0 0 0 1
-1 0 0 1 -0 1 0
-1 0 1 0 0 0 1
-1 0 0 0 -0 1 0
-1 1 0 0 0 0 1
-1 1 0 1 0 1 0
-1 1 1 0 0 0 1
-1 1 0 0 -0 1 0
-1 0 0 0 1 0 -0
-1 0 0 1 1 0 -0
-1 0 1 0 1 0 -0
-1 0 1 1 1 0 -0
-Polygon3D 0
-PolygonOnTriangulations 0
-Surfaces 12
-1 0 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 4 0 0 1 1 0 -0 -0 1 0
-1 0 4 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 0 0 0 1 1 0 -0 -0 1 0
-1 4 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 1 0 0 1 1 0 -0 -0 1 0
-1 0 1 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 0 0 0 1 1 0 -0 -0 1 0
-1 1 0 0 1 0 -0 0 0 1 0 -1 0
-Triangulations 0
-
-TShapes 69
-Ve
-1e-07
-0 0 4
-0 0
-
-0101101
-*
-Ve
-1e-07
-0 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 1 0 0 4
-2 1 1 0 0 4
-2 2 2 0 0 4
-0
-
-0101000
--69 0 +68 0 *
-Ve
-1e-07
-0 4 4
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 2 0 0 4
-2 3 1 0 0 4
-2 4 3 0 0 4
-0
-
-0101000
--66 0 +69 0 *
-Ve
-1e-07
-0 4 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 3 0 0 4
-2 5 1 0 0 4
-2 6 4 0 0 4
-0
-
-0101000
--66 0 +64 0 *
-Ed
- 1e-07 1 1 0
-1 4 0 0 4
-2 7 1 0 0 4
-2 8 5 0 0 4
-0
-
-0101000
--64 0 +68 0 *
-Wi
-
-0101000
--67 0 -65 0 +63 0 +62 0 *
-Fa
-0 1e-07 1 0
-
-0111000
-+61 0 *
-Ve
-1e-07
-4 0 4
-0 0
-
-0101101
-*
-Ve
-1e-07
-4 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 5 0 0 4
-2 9 6 0 0 4
-2 10 2 0 0 4
-0
-
-0101000
--59 0 +58 0 *
-Ve
-1e-07
-4 4 4
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 6 0 0 4
-2 11 6 0 0 4
-2 12 3 0 0 4
-0
-
-0101000
--56 0 +59 0 *
-Ve
-1e-07
-4 4 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 7 0 0 4
-2 13 6 0 0 4
-2 14 4 0 0 4
-0
-
-0101000
--56 0 +54 0 *
-Ed
- 1e-07 1 1 0
-1 8 0 0 4
-2 15 6 0 0 4
-2 16 5 0 0 4
-0
-
-0101000
--54 0 +58 0 *
-Wi
-
-0101000
--57 0 -55 0 +53 0 +52 0 *
-Fa
-0 1e-07 6 0
-
-0111000
-+51 0 *
-Ed
- 1e-07 1 1 0
-1 9 0 0 4
-2 17 2 0 0 4
-2 18 5 0 0 4
-0
-
-0101000
--58 0 +68 0 *
-Ed
- 1e-07 1 1 0
-1 10 0 0 4
-2 19 2 0 0 4
-2 20 3 0 0 4
-0
-
-0101000
--59 0 +69 0 *
-Wi
-
-0101000
--49 0 -57 0 +48 0 +67 0 *
-Fa
-0 1e-07 2 0
-
-0111000
-+47 0 *
-Ed
- 1e-07 1 1 0
-1 11 0 0 4
-2 21 4 0 0 4
-2 22 5 0 0 4
-0
-
-0101000
--54 0 +64 0 *
-Ed
- 1e-07 1 1 0
-1 12 0 0 4
-2 23 4 0 0 4
-2 24 3 0 0 4
-0
-
-0101000
--56 0 +66 0 *
-Wi
-
-0101000
--45 0 -53 0 +44 0 +63 0 *
-Fa
-0 1e-07 4 0
-
-0111000
-+43 0 *
-Wi
-
-0101000
--62 0 -45 0 +52 0 +49 0 *
-Fa
-0 1e-07 5 0
-
-0111000
-+41 0 *
-Wi
-
-0101000
--65 0 -44 0 +55 0 +48 0 *
-Fa
-0 1e-07 3 0
-
-0111000
-+39 0 *
-Sh
-
-0101100
--60 0 +50 0 -46 0 +42 0 -40 0 +38 0 *
-So
-
-CGM_ATTRIB ENTITY_NAME* volumeA* * *
-*
-0100000
-+37 0 *
-Ve
-1e-07
-0 0 1
-0 0
-
-0101101
-*
-Ve
-1e-07
-0 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 13 0 0 1
-2 25 7 0 0 1
-2 26 8 0 0 1
-0
-
-0101000
--35 0 +34 0 *
-Ve
-1e-07
-0 1 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 14 0 0 1
-2 27 7 0 0 1
-2 28 9 0 0 1
-0
-
-0101000
--32 0 +35 0 *
-Ve
-1e-07
-0 1 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 15 0 0 1
-2 29 7 0 0 1
-2 30 10 0 0 1
-0
-
-0101000
--32 0 +30 0 *
-Ed
- 1e-07 1 1 0
-1 16 0 0 1
-2 31 7 0 0 1
-2 32 11 0 0 1
-0
-
-0101000
--30 0 +34 0 *
-Wi
-
-0101000
--33 0 -31 0 +29 0 +28 0 *
-Fa
-0 1e-07 7 0
-
-0111000
-+27 0 *
-Ve
-1e-07
-1 0 1
-0 0
-
-0101101
-*
-Ve
-1e-07
-1 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 17 0 0 1
-2 33 12 0 0 1
-2 34 8 0 0 1
-0
-
-0101000
--25 0 +24 0 *
-Ve
-1e-07
-1 1 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 18 0 0 1
-2 35 12 0 0 1
-2 36 9 0 0 1
-0
-
-0101000
--22 0 +25 0 *
-Ve
-1e-07
-1 1 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 19 0 0 1
-2 37 12 0 0 1
-2 38 10 0 0 1
-0
-
-0101000
--22 0 +20 0 *
-Ed
- 1e-07 1 1 0
-1 20 0 0 1
-2 39 12 0 0 1
-2 40 11 0 0 1
-0
-
-0101000
--20 0 +24 0 *
-Wi
-
-0101000
--23 0 -21 0 +19 0 +18 0 *
-Fa
-0 1e-07 12 0
-
-0111000
-+17 0 *
-Ed
- 1e-07 1 1 0
-1 21 0 0 1
-2 41 8 0 0 1
-2 42 11 0 0 1
-0
-
-0101000
--24 0 +34 0 *
-Ed
- 1e-07 1 1 0
-1 22 0 0 1
-2 43 8 0 0 1
-2 44 9 0 0 1
-0
-
-0101000
--25 0 +35 0 *
-Wi
-
-0101000
--15 0 -23 0 +14 0 +33 0 *
-Fa
-0 1e-07 8 0
-
-0111000
-+13 0 *
-Ed
- 1e-07 1 1 0
-1 23 0 0 1
-2 45 10 0 0 1
-2 46 11 0 0 1
-0
-
-0101000
--20 0 +30 0 *
-Ed
- 1e-07 1 1 0
-1 24 0 0 1
-2 47 10 0 0 1
-2 48 9 0 0 1
-0
-
-0101000
--22 0 +32 0 *
-Wi
-
-0101000
--11 0 -19 0 +10 0 +29 0 *
-Fa
-0 1e-07 10 0
-
-0111000
-+9 0 *
-Wi
-
-0101000
--28 0 -11 0 +18 0 +15 0 *
-Fa
-0 1e-07 11 0
-
-0111000
-+7 0 *
-Wi
-
-0101000
--31 0 -10 0 +21 0 +14 0 *
-Fa
-0 1e-07 9 0
-
-0111000
-+5 0 *
-Sh
-
-0101100
--26 0 +16 0 -12 0 +8 0 -6 0 +4 0 *
-So
-
-CGM_ATTRIB ENTITY_NAME* volumeB* * *
-*
-0100000
-+3 0 *
-Co
-
-1100000
-+36 1 +2 0 *
-
-+1 0
Deleted: cgm/trunk/test/unite5.occ
===================================================================
--- cgm/trunk/test/unite5.occ 2008-12-04 16:23:02 UTC (rev 2465)
+++ cgm/trunk/test/unite5.occ 2008-12-04 16:44:16 UTC (rev 2466)
@@ -1,626 +0,0 @@
-DBRep_DrawableShape
-
-CASCADE Topology V1, (c) Matra-Datavision
-Locations 2
-1
- 1 0 0 0
- 0 1 0 0.5
- 0 0 1 0
-2 1 -1 0
-Curve2ds 48
-1 0 0 1 0
-1 0 4 1 0
-1 4 0 0 -1
-1 4 0 0 1
-1 0 -4 1 0
-1 0 4 1 0
-1 0 0 0 -1
-1 4 0 0 1
-8 -1 0
-1 0 1 -1 0
-8 -1 0
-1 0 -0.5 -1 -0
-1 0 0 0 1
-1 0 0 1 0
-1 4 0 0 1
-1 0 0 1 0
-1 0 0 1 0
-1 0 0 1 0
-8 0 1
-1 1 0 0 1
-8 0 1
-1 0 0.5 1 0
-1 4 0 0 -1
-1 0 0 0 1
-1 4 0 0 1
-1 0 4 1 0
-1 0 0 0 1
-1 0 4 1 0
-1 0 -4 1 0
-1 0 0 1 0
-1 0 0 0 -1
-1 0 0 0 1
-1 0 0 0 -1
-1 1 0 0 1
-1 0 0 0 1
-1 0 1 1 0
-1 0 0 1 0
-1 0 1 1 0
-1 1 0 0 -1
-1 1 0 0 1
-1 0 -1 1 0
-1 0 0 1 0
-1 1 0 0 -1
-1 0 0 0 1
-1 1 0 0 1
-1 0 0 1 0
-1 0 0 0 -1
-1 0 0 0 1
-1 0 0 0 1
-1 0 0 1 0
-1 0 0 1 0
-1 0 0 1 0
-Curves 24
-1 4 0 0 0 0 1
-1 4 0 4 0 1 0
-1 4 4 0 0 0 1
-1 4 0 0 -0 1 0
-1 1 0.5 0 -0 0 -1
-1 0 0 0 1 0 -0
-1 0 0 4 1 0 -0
-1 0 0 0 0 0 1
-1 0 0.5 1 1 0 0
-1 0 0 4 -0 1 0
-1 0 4 4 1 0 -0
-1 0 4 0 1 0 -0
-1 0 4 0 0 0 1
-1 0 0 0 -0 1 0
-1 1 0 0 -0 1 0
-1 0 1 0 1 0 -0
-1 1 0 0 0 0 1
-1 1 0 1 0 1 0
-1 0 1 0 0 0 1
-1 0 0 1 -0 1 0
-1 0 0 1 1 0 -0
-1 0 0 0 -0 1 0
-1 0 0 0 1 0 -0
-1 0 0 0 0 0 1
-Polygon3D 0
-PolygonOnTriangulations 0
-Surfaces 12
-1 4 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 4 0 0 1 1 0 -0 -0 1 0
-1 0 4 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 0 0 0 1 1 0 -0 -0 1 0
-1 1 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 1 0 0 1 1 0 -0 -0 1 0
-1 0 0 0 0 0 1 1 0 -0 -0 1 0
-1 0 1 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 0 1 0 -0 0 0 1 0 -1 0
-Triangulations 0
-
-TShapes 76
-Ve
-1e-07
-4 0 4
-0 0
-
-0101101
-*
-Ve
-1e-07
-4 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 1 0 0 4
-2 1 1 0 0 4
-2 2 2 0 0 4
-0
-
-0101000
--76 0 +75 0 *
-Ve
-1e-07
-4 4 4
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 2 0 0 4
-2 3 1 0 0 4
-2 4 3 0 0 4
-0
-
-0101000
--73 0 +76 0 *
-Ve
-1e-07
-4 4 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 3 0 0 4
-2 5 1 0 0 4
-2 6 4 0 0 4
-0
-
-0101000
--73 0 +71 0 *
-Ed
- 1e-07 1 1 0
-1 4 0 0 4
-2 7 1 0 0 4
-2 8 5 0 0 4
-0
-
-0101000
--71 0 +75 0 *
-Wi
-
-0101000
--74 0 -72 0 +70 0 +69 0 *
-Fa
-0 1e-07 1 0
-
-0111000
-+68 0 *
-Ve
-2.00001e-07
-1 0.5 1
-0 0
-
-0101101
-*
-Ve
-1.24999999959086e-07
-1 0.500000025 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 5 0 -1 0
-2 9 2 1 -1 0
-2 10 6 0 -1 0
-0
-
-0101000
-+66 0 -65 0 *
-Ed
- 1e-07 1 1 0
-1 6 0 1 4
-2 11 2 0 1 4
-2 12 5 0 1 4
-0
-
-0101000
-+65 2 -75 0 *
-Ve
-1e-07
-0 0 4
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 7 0 0 4
-2 13 2 0 0 4
-2 14 3 0 0 4
-0
-
-0101000
--76 0 +62 0 *
-Ve
-1.24999999959086e-07
-0 0.500000025 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 8 0 1 4
-2 15 7 0 1 4
-2 16 2 0 1 4
-0
-
-0101000
-+60 2 -62 0 *
-Ed
- 1e-07 1 1 0
-1 9 0 0 1
-2 17 2 1 0 1
-2 18 8 0 0 1
-0
-
-0101000
-+60 0 -66 0 *
-Wi
-
-0101000
--64 0 -63 1 -74 1 +61 1 +59 1 -58 0 *
-Fa
-0 1e-07 2 1
-
-0101000
-+57 0 *
-Ve
-1e-07
-0 4 4
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 10 0 0 4
-2 19 7 0 0 4
-2 20 3 0 0 4
-0
-
-0101000
--55 0 +62 0 *
-Ed
- 1e-07 1 1 0
-1 11 0 0 4
-2 21 4 0 0 4
-2 22 3 0 0 4
-0
-
-0101000
--73 0 +55 0 *
-Wi
-
-0101000
--54 0 -53 0 +72 0 +61 0 *
-Fa
-0 1e-07 3 0
-
-0111000
-+52 0 *
-Ve
-1e-07
-0 4 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 12 0 0 4
-2 23 4 0 0 4
-2 24 5 0 0 4
-0
-
-0101000
--71 0 +50 0 *
-Ed
- 1e-07 1 1 0
-1 13 0 0 4
-2 25 7 0 0 4
-2 26 4 0 0 4
-0
-
-0101000
--55 0 +50 0 *
-Wi
-
-0101000
--49 0 -70 0 +53 0 +48 0 *
-Fa
-0 1e-07 4 0
-
-0111000
-+47 0 *
-Ve
-1e-07
-0 1 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 14 0 0.5 4
-2 27 7 0 0.5 4
-2 28 5 0 0.5 4
-0
-
-0101000
-+45 2 -50 0 *
-Ve
-1e-07
-1 1 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 15 0 0.50000005 1
-2 29 6 0 0.50000005 1
-2 30 9 0 0.50000005 1
-0
-
-0101000
-+65 0 -43 0 *
-Ed
- 1e-07 1 1 0
-1 16 0 0 1
-2 31 10 0 0 1
-2 32 9 0 0 1
-0
-
-0101000
--43 0 +45 0 *
-Wi
-
-0101000
--44 1 -49 1 +69 1 +63 1 -42 0 +41 0 *
-Fa
-0 1e-07 5 1
-
-0101000
-+40 0 *
-Ve
-1e-07
-1 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 15 0 0 0.50000005
-2 29 6 0 0 0.50000005
-2 30 9 0 0 0.50000005
-0
-
-0101000
-+38 0 -65 0 *
-Ve
-1e-07
-1 0 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 17 0 0 1
-2 33 6 0 0 1
-2 34 11 0 0 1
-0
-
-0101000
--36 0 +38 0 *
-Ed
- 1e-07 1 1 0
-1 18 0 0 0.5
-2 35 6 0 0 0.5
-2 36 8 0 0 0.5
-0
-
-0101000
-+36 0 -66 0 *
-Wi
-
-0101000
--64 0 +37 0 -35 0 -34 0 *
-Fa
-0 1e-07 6 0
-
-0101000
-+33 0 *
-Ve
-1e-07
-0 1 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 19 0 0 1
-2 37 12 0 0 1
-2 38 10 0 0 1
-0
-
-0101000
--31 0 +45 0 *
-Ed
- 1e-07 1 1 0
-1 20 0 0.50000005 1
-2 39 12 0 0.50000005 1
-2 40 8 0 0.50000005 1
-0
-
-0101000
-+60 0 -31 0 *
-Wi
-
-0101000
--59 1 -54 1 +48 1 +44 1 -30 0 +29 0 *
-Fa
-0 1e-07 7 1
-
-0101000
-+28 0 *
-Ve
-1e-07
-0 0 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 21 0 0 1
-2 41 11 0 0 1
-2 42 8 0 0 1
-0
-
-0101000
--36 0 +26 0 *
-Ed
- 1e-07 1 1 0
-1 20 0 0 0.50000005
-2 39 12 0 0 0.50000005
-2 40 8 0 0 0.50000005
-0
-
-0101000
-+26 0 -60 0 *
-Wi
-
-0101000
--58 0 +34 0 +25 0 -24 0 *
-Fa
-0 1e-07 8 0
-
-0101000
-+23 0 *
-Ve
-1e-07
-0 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 14 0 0 0.5
-2 27 7 0 0 0.5
-2 28 5 0 0 0.5
-0
-
-0101000
-+21 0 -45 2 *
-Ed
- 1e-07 1 1 0
-1 6 0 0 1
-2 11 2 0 0 1
-2 12 5 0 0 1
-0
-
-0101000
-+21 0 -65 2 *
-Wi
-
-0101000
--20 1 -41 0 +42 0 +19 1 *
-Fa
-0 1e-07 5 1
-
-0111000
-+18 0 *
-Ve
-1e-07
-0 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 22 0 0 0.5
-2 43 12 0 0 0.5
-2 44 9 0 0 0.5
-0
-
-0101000
-+16 0 -21 1 *
-Ed
- 1e-07 1 1 0
-1 23 0 0 1
-2 45 11 0 0 1
-2 46 9 0 0 1
-0
-
-0101000
--38 0 +16 0 *
-Wi
-
-0101000
--15 0 -19 1 +37 0 +14 0 *
-Fa
-0 1e-07 9 0
-
-0101000
-+13 0 *
-Ed
- 1e-07 1 1 0
-1 24 0 0 1
-2 47 12 0 0 1
-2 48 11 0 0 1
-0
-
-0101000
--26 0 +16 0 *
-Wi
-
-0101000
--14 0 -35 0 +25 0 +11 0 *
-Fa
-0 1e-07 11 0
-
-0111000
-+10 0 *
-Ed
- 1e-07 1 1 0
-1 8 0 0 1
-2 15 7 0 0 1
-2 16 2 0 0 1
-0
-
-0101000
-+21 0 -60 2 *
-Wi
-
-0101000
--8 1 -29 0 +30 0 +20 1 *
-Fa
-0 1e-07 7 1
-
-0111000
-+7 0 *
-Wi
-
-0101000
--24 0 +8 1 +15 0 -11 0 *
-Fa
-0 1e-07 12 0
-
-0101000
-+5 0 *
-Sh
-
-0101000
-+67 1 -56 0 +51 1 +46 1 -39 0 +32 0 -27 0 +22 0 -17 0 -12 0
--9 0 -6 0 -4 0 *
-So
-
-CGM_ATTRIB ENTITY_NAME* volumeA* * *
-*
-0100000
-+3 0 *
-Co
-
-1100000
-+2 0 *
-
-+1 0
\ No newline at end of file
Deleted: cgm/trunk/test/unite6.occ
===================================================================
--- cgm/trunk/test/unite6.occ 2008-12-04 16:23:02 UTC (rev 2465)
+++ cgm/trunk/test/unite6.occ 2008-12-04 16:44:16 UTC (rev 2466)
@@ -1,626 +0,0 @@
-DBRep_DrawableShape
-
-CASCADE Topology V1, (c) Matra-Datavision
-Locations 2
-1
- 1 0 0 0
- 0 1 0 0.5
- 0 0 1 0
-2 1 -1 0
-Curve2ds 48
-1 0 0 0 1
-1 0 0 1 0
-1 0 0 1 0
-1 0 1 1 0
-1 1 0 0 1
-1 0 0 1 0
-1 0 0 1 0
-1 0 0 1 0
-1 0 0 0 -1
-1 0 0 0 1
-1 0 0 0 1
-1 0 0 1 0
-1 0 0 0 -1
-1 1 0 0 1
-1 1 0 0 -1
-1 1 0 0 1
-8 0 1
-1 0 -0.5 1 0
-8 0 1
-1 0 1 1 0
-1 1 0 0 -1
-1 0 0 0 1
-8 -1 0
-1 0 0.5 -1 0
-8 -1 0
-1 1 0 0 -1
-1 0 0 1 0
-1 0 0 1 0
-1 0 0 0 1
-1 0 1 1 0
-1 0 0 1 0
-1 0 4 1 0
-1 4 0 0 1
-1 0 0 1 0
-1 0 -1 1 0
-1 0 0 1 0
-1 0 0 0 -1
-1 0 0 0 1
-1 0 0 0 1
-1 0 4 1 0
-1 0 0 0 -1
-1 4 0 0 1
-1 4 0 0 -1
-1 4 0 0 1
-1 0 -4 1 0
-1 0 4 1 0
-1 4 0 0 -1
-1 0 0 0 1
-1 4 0 0 1
-1 0 4 1 0
-1 0 -4 1 0
-1 0 0 1 0
-Curves 24
-1 0 0 0 1 0 -0
-1 1 0 0 0 0 1
-1 0 0 1 1 0 -0
-1 0 0 0 0 0 1
-1 0 0 0 -0 1 0
-1 0 0 0 1 0 -0
-1 1 0 0 -0 1 0
-1 1 0 1 0 1 0
-1 1 0.5 0 0 -0 1
-1 0 0 1 -0 1 0
-1 0 0.5 1 -1 0 0
-1 0 0 0 0 0 1
-1 0 1 0 1 0 -0
-1 4 0 0 0 0 1
-1 0 0 4 1 0 -0
-1 0 1 0 0 0 1
-1 0 0 0 -0 1 0
-1 0 4 0 1 0 -0
-1 4 0 0 -0 1 0
-1 4 0 4 0 1 0
-1 4 4 0 0 0 1
-1 0 0 4 -0 1 0
-1 0 4 4 1 0 -0
-1 0 4 0 0 0 1
-Polygon3D 0
-PolygonOnTriangulations 0
-Surfaces 12
-1 0 0 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 0 0 0 1 1 0 -0 -0 1 0
-1 1 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 1 0 0 1 1 0 -0 -0 1 0
-1 0 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 0 -0 1 0 0 0 1 1 0 -0
-1 0 0 0 0 0 1 1 0 -0 -0 1 0
-1 0 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 1 0 -0 1 0 0 0 1 1 0 -0
-1 4 0 0 1 0 -0 0 0 1 0 -1 0
-1 0 0 4 0 0 1 1 0 -0 -0 1 0
-1 0 4 0 -0 1 0 0 0 1 1 0 -0
-Triangulations 0
-
-TShapes 76
-Ve
-1e-07
-1 0 0
-0 0
-
-0101101
-*
-Ve
-1e-07
-0 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 1 0 0 1
-2 1 1 0 0 1
-2 2 2 0 0 1
-0
-
-0101000
--76 0 +75 0 *
-Ve
-1e-07
-1 0 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 2 0 0 1
-2 3 3 0 0 1
-2 4 1 0 0 1
-0
-
-0101000
--73 0 +76 0 *
-Ve
-1e-07
-0 0 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 3 0 0 1
-2 5 1 0 0 1
-2 6 4 0 0 1
-0
-
-0101000
--73 0 +71 0 *
-Ed
- 1e-07 1 1 0
-1 4 0 0 1
-2 7 5 0 0 1
-2 8 1 0 0 1
-0
-
-0101000
--71 0 +75 0 *
-Wi
-
-0101000
--74 0 -72 0 +70 0 +69 0 *
-Fa
-0 1e-07 1 0
-
-0111000
-+68 0 *
-Ve
-1e-07
-0 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 5 0 0 0.5
-2 9 5 0 0 0.5
-2 10 2 0 0 0.5
-0
-
-0101000
-+75 0 -66 1 *
-Ve
-1.24999999959086e-07
-1 0.500000025 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 6 0 0 1
-2 11 6 0 0 1
-2 12 7 0 0 1
-0
-
-0101000
-+66 0 -64 2 *
-Ed
- 1e-07 1 1 0
-1 7 0 0 0.50000005
-2 13 3 0 0 0.50000005
-2 14 2 0 0 0.50000005
-0
-
-0101000
-+76 0 -64 0 *
-Wi
-
-0101000
--65 0 -63 1 +62 0 +74 0 *
-Fa
-0 1e-07 2 0
-
-0101000
-+61 0 *
-Ve
-2.00001e-07
-1 0.5 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 8 0 0 0.5
-2 15 3 0 0 0.5
-2 16 4 0 0 0.5
-0
-
-0101000
-+73 0 -59 0 *
-Ed
- 1e-07 1 1 0
-1 9 0 0 1
-2 17 3 0 0 1
-2 18 6 1 0 1
-0
-
-0101000
-+64 0 -59 0 *
-Wi
-
-0101000
-+62 0 -72 0 -58 0 +57 0 *
-Fa
-0 1e-07 3 0
-
-0101000
-+56 0 *
-Ve
-1.24999999959086e-07
-0 0.500000025 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 10 0 0 0.50000005
-2 19 5 0 0 0.50000005
-2 20 4 0 0 0.50000005
-0
-
-0101000
-+71 0 -54 0 *
-Ed
- 1e-07 1 1 0
-1 11 0 -1 0
-2 21 4 0 -1 0
-2 22 6 1 -1 0
-0
-
-0101000
-+59 0 -54 0 *
-Wi
-
-0101000
-+58 0 +70 0 -53 0 +52 0 *
-Fa
-0 1e-07 4 0
-
-0101000
-+51 0 *
-Ed
- 1e-07 1 1 0
-1 12 0 0 1
-2 23 8 0 0 1
-2 24 6 0 0 1
-0
-
-0101000
-+66 0 -54 2 *
-Wi
-
-0101000
--53 0 +49 1 +65 0 -69 0 *
-Fa
-0 1e-07 5 0
-
-0101000
-+48 0 *
-Ve
-1e-07
-0 1 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 5 0 0.5 1
-2 9 5 0 0.5 1
-2 10 2 0 0.5 1
-0
-
-0101000
-+66 1 -46 0 *
-Ve
-1e-07
-1 1 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 13 0 0 1
-2 25 9 0 0 1
-2 26 2 0 0 1
-0
-
-0101000
--44 0 +46 0 *
-Ed
- 1e-07 1 1 0
-1 7 0 0.50000005 1
-2 13 3 0 0.50000005 1
-2 14 2 0 0.50000005 1
-0
-
-0101000
-+64 0 -44 0 *
-Wi
-
-0101000
--45 0 -43 0 +42 0 +63 1 *
-Fa
-0 1e-07 2 0
-
-0111000
-+41 0 *
-Ve
-1e-07
-4 0 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 6 0 1 4
-2 11 6 0 1 4
-2 12 7 0 1 4
-0
-
-0101000
-+64 2 -39 0 *
-Ve
-1e-07
-4 0 4
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 14 0 0 4
-2 27 10 0 0 4
-2 28 6 0 0 4
-0
-
-0101000
--37 0 +39 0 *
-Ve
-1e-07
-0 0 4
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 15 0 0 4
-2 29 6 0 0 4
-2 30 11 0 0 4
-0
-
-0101000
--37 0 +35 0 *
-Ed
- 1e-07 1 1 0
-1 12 0 1 4
-2 23 8 0 1 4
-2 24 6 0 1 4
-0
-
-0101000
-+54 2 -35 0 *
-Wi
-
-0101000
--38 1 -36 1 +34 1 +33 1 +52 0 +57 0 *
-Fa
-0 1e-07 6 1
-
-0101000
-+32 0 *
-Ve
-1e-07
-0 1 1
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 10 0 0.50000005 1
-2 19 5 0 0.50000005 1
-2 20 4 0 0.50000005 1
-0
-
-0101000
-+54 0 -30 0 *
-Ed
- 1e-07 1 1 0
-1 16 0 0 1
-2 31 5 0 0 1
-2 32 9 0 0 1
-0
-
-0101000
--30 0 +46 0 *
-Wi
-
-0101000
--29 0 +28 0 +45 0 -49 1 *
-Fa
-0 1e-07 5 0
-
-0111000
-+27 0 *
-Ve
-1e-07
-0 4 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 17 0 0.5 4
-2 33 8 0 0.5 4
-2 34 7 0 0.5 4
-0
-
-0101000
-+46 2 -25 0 *
-Ve
-1e-07
-4 4 0
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 18 0 0 4
-2 35 12 0 0 4
-2 36 7 0 0 4
-0
-
-0101000
--23 0 +25 0 *
-Ed
- 1e-07 1 1 0
-1 19 0 0 4
-2 37 10 0 0 4
-2 38 7 0 0 4
-0
-
-0101000
--23 0 +39 0 *
-Wi
-
-0101000
--24 1 -22 1 +21 1 +38 1 -42 0 +43 0 *
-Fa
-0 1e-07 7 1
-
-0101000
-+20 0 *
-Ve
-1e-07
-4 4 4
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 20 0 0 4
-2 39 10 0 0 4
-2 40 11 0 0 4
-0
-
-0101000
--18 0 +37 0 *
-Ed
- 1e-07 1 1 0
-1 21 0 0 4
-2 41 10 0 0 4
-2 42 12 0 0 4
-0
-
-0101000
--18 0 +23 0 *
-Wi
-
-0101000
--36 0 -17 0 +16 0 +21 0 *
-Fa
-0 1e-07 10 0
-
-0111000
-+15 0 *
-Ve
-1e-07
-0 4 4
-0 0
-
-0101101
-*
-Ed
- 1e-07 1 1 0
-1 22 0 0 4
-2 43 8 0 0 4
-2 44 11 0 0 4
-0
-
-0101000
--13 0 +35 0 *
-Ed
- 1e-07 1 1 0
-1 23 0 0 4
-2 45 12 0 0 4
-2 46 11 0 0 4
-0
-
-0101000
--18 0 +13 0 *
-Wi
-
-0101000
--12 0 -11 0 +17 0 +34 0 *
-Fa
-0 1e-07 11 0
-
-0111000
-+10 0 *
-Ed
- 1e-07 1 1 0
-1 24 0 0 4
-2 47 8 0 0 4
-2 48 12 0 0 4
-0
-
-0101000
--13 0 +25 0 *
-Wi
-
-0101000
--33 1 -12 1 +8 1 +24 1 -28 0 +29 0 *
-Fa
-0 1e-07 8 1
-
-0101000
-+7 0 *
-Wi
-
-0101000
--22 0 -16 0 +11 0 +8 0 *
-Fa
-0 1e-07 12 0
-
-0111000
-+5 0 *
-Sh
-
-0101000
--67 0 -60 0 +55 0 +50 0 -47 0 -40 0 -31 0 -26 0 -19 0 +14 1
-+9 1 -6 0 +4 1 *
-So
-
-CGM_ATTRIB ENTITY_NAME* volumeB* * *
-*
-0100000
-+3 0 *
-Co
-
-1100000
-+2 0 *
-
-+1 0
\ No newline at end of file
Modified: cgm/trunk/test/webcut.cpp
===================================================================
--- cgm/trunk/test/webcut.cpp 2008-12-04 16:23:02 UTC (rev 2465)
+++ cgm/trunk/test/webcut.cpp 2008-12-04 16:44:16 UTC (rev 2466)
@@ -162,7 +162,7 @@
DLIList<RefEntity*> ref_entity_list;
int num_ents_exported=0;
const CubitString cubit_version="10.2";
- const char * filename = STRINGIFY(SRCDIR) "/webcut_with_brick.sat";
+ const char * filename = "webcut_with_brick.sat";
const char * filetype = "ACIS_SAT";
rsl = gti->export_solid_model(ref_entity_list, filename, filetype,
num_ents_exported, cubit_version);
@@ -213,7 +213,7 @@
DLIList<RefEntity*> ref_entity_list;
int num_ents_exported=0;
const CubitString cubit_version="10.2";
- const char * filename = STRINGIFY(SRCDIR) "webcut_with_cylinder.sat";
+ const char * filename = "webcut_with_cylinder.sat";
const char * filetype = "ACIS_SAT";
rsl = gti->export_solid_model(ref_entity_list, filename, filetype,
num_ents_exported, cubit_version);
@@ -266,7 +266,7 @@
DLIList<RefEntity*> ref_entity_list;
int num_ents_exported=0;
const CubitString cubit_version="10.2";
- const char * filename = STRINGIFY(SRCDIR) "/webcut_with_sheet.sat";
+ const char * filename = "webcut_with_sheet.sat";
const char * filetype = "ACIS_SAT";
rsl = gti->export_solid_model(ref_entity_list, filename, filetype,
num_ents_exported, cubit_version);
@@ -334,7 +334,7 @@
DLIList<RefEntity*> ref_entity_list;
int num_ents_exported=0;
const CubitString cubit_version="10.2";
- const char * filename = STRINGIFY(SRCDIR) "webcut_with_sweep_rotational.sat";
+ const char * filename = "webcut_with_sweep_rotational.sat";
const char * filetype = "ACIS_SAT";
rsl = gti->export_solid_model(ref_entity_list, filename, filetype,
num_ents_exported, cubit_version);
@@ -394,7 +394,7 @@
DLIList<RefEntity*> ref_entity_list;
int num_ents_exported=0;
const CubitString cubit_version="10.2";
- const char * filename = STRINGIFY(SRCDIR) "webcut_with_sweep_curves.sat";
+ const char * filename = "webcut_with_sweep_curves.sat";
const char * filetype = "ACIS_SAT";
rsl = gti->export_solid_model(ref_entity_list, filename, filetype,
num_ents_exported, cubit_version);
@@ -465,7 +465,7 @@
DLIList<RefEntity*> ref_entity_list;
int num_ents_exported=0;
const CubitString cubit_version="10.2";
- const char * filename = STRINGIFY(SRCDIR) "/webcut_with_sweep_along_curve.sat";
+ const char * filename = "webcut_with_sweep_along_curve.sat";
const char * filetype = "ACIS_SAT";
rsl = gti->export_solid_model(ref_entity_list, filename, filetype,
num_ents_exported, cubit_version);
@@ -522,7 +522,7 @@
DLIList<RefEntity*> ref_entity_list;
int num_ents_exported=0;
const CubitString cubit_version="10.2";
- const char * filename = STRINGIFY(SRCDIR) "/webcut_with_curve_loop.sat";
+ const char * filename = "webcut_with_curve_loop.sat";
const char * filetype = "ACIS_SAT";
rsl = gti->export_solid_model(ref_entity_list, filename, filetype,
num_ents_exported, cubit_version);
@@ -575,7 +575,7 @@
DLIList<RefEntity*> ref_entity_list;
int num_ents_exported=0;
const CubitString cubit_version="10.2";
- const char * filename = STRINGIFY(SRCDIR) "/webcut_with_extended_surf.sat";
+ const char * filename = "webcut_with_extended_surf.sat";
const char * filetype = "ACIS_SAT";
rsl = gti->export_solid_model(ref_entity_list, filename, filetype,
num_ents_exported, cubit_version);
@@ -626,7 +626,7 @@
DLIList<RefEntity*> ref_entity_list;
int num_ents_exported=0;
const CubitString cubit_version="10.2";
- const char * filename = STRINGIFY(SRCDIR) "/webcut_with_sweep_surfaces_rotated.sat";
+ const char * filename = "webcut_with_sweep_surfaces_rotated.sat";
const char * filetype = "ACIS_SAT";
rsl = gti->export_solid_model(ref_entity_list, filename, filetype,
num_ents_exported, cubit_version);
@@ -676,7 +676,7 @@
DLIList<RefEntity*> ref_entity_list;
int num_ents_exported=0;
const CubitString cubit_version="10.2";
- const char * filename = STRINGIFY(SRCDIR) "/webcut_with_sweep_surfaces.sat";
+ const char * filename = "webcut_with_sweep_surfaces.sat";
const char * filetype = "ACIS_SAT";
rsl = gti->export_solid_model(ref_entity_list, filename, filetype,
num_ents_exported, cubit_version);
@@ -736,7 +736,7 @@
DLIList<RefEntity*> ref_entity_list;
int num_ents_exported=0;
const CubitString cubit_version="10.2";
- const char * filename = STRINGIFY(SRCDIR) "/webcut_with_sweep_surfaces_along_curve.sat";
+ const char * filename = "webcut_with_sweep_surfaces_along_curve.sat";
const char * filetype = "ACIS_SAT";
rsl = gti->export_solid_model(ref_entity_list, filename, filetype,
num_ents_exported, cubit_version);
Deleted: cgm/trunk/test/webcut_with_brick.sat
===================================================================
--- cgm/trunk/test/webcut_with_brick.sat 2008-12-04 16:23:02 UTC (rev 2465)
+++ cgm/trunk/test/webcut_with_brick.sat 2008-12-04 16:44:16 UTC (rev 2466)
@@ -1,233 +0,0 @@
-1600 0 2 0
-10 Cubit 10.2 17 ACIS 16.0.7 Linux 24 Wed Nov 26 13:51:34 2008
-1 9.9999999999999995e-07 1e-10
-body $-1 -1 -1 $-1 $2 $-1 $3 T 4 4 4 14 14 14 #
-body $-1 -1 -1 $-1 $4 $-1 $5 T 4 4 4 5 5 5 #
-lump $-1 -1 -1 $-1 $-1 $6 $0 T 4 4 4 14 14 14 #
-transform $-1 -1 1 0 0 0 1 0 0 0 1 0 0 0 1 no_rotate no_reflect no_shear #
-lump $-1 -1 -1 $-1 $-1 $7 $1 T 4 4 4 5 5 5 #
-transform $-1 -1 1 0 0 0 1 0 0 0 1 0 0 0 1 no_rotate no_reflect no_shear #
-shell $-1 -1 -1 $-1 $-1 $-1 $8 $-1 $2 T 4 4 4 14 14 14 #
-shell $-1 -1 -1 $-1 $-1 $-1 $9 $-1 $4 T 4 4 4 5 5 5 #
-face $-1 -1 -1 $-1 $10 $11 $6 $-1 $12 reversed single T 4 4 5 5 5 5 F #
-face $-1 -1 -1 $-1 $13 $14 $7 $-1 $15 forward single T 4 4 5 5 5 5 F #
-face $-1 -1 -1 $-1 $16 $17 $6 $-1 $18 forward single T 4 5 4 5 5 5 F #
-loop $-1 -1 -1 $-1 $-1 $19 $8 T 4 4 5 5 5 5 unknown #
-plane-surface $-1 -1 -1 $-1 4.5 4.5 5 0 0 1 1 0 0 forward_v I I I I #
-face $-1 -1 -1 $-1 $20 $21 $7 $-1 $22 reversed single T 4 5 4 5 5 5 F #
-loop $-1 -1 -1 $-1 $-1 $23 $9 T 4 4 5 5 5 5 unknown #
-plane-surface $-1 -1 -1 $-1 4.5 4.5 5 0 0 1 1 0 0 forward_v I I I I #
-face $-1 -1 -1 $-1 $24 $25 $6 $-1 $26 forward single T 5 4 4 5 5 5 F #
-loop $-1 -1 -1 $-1 $-1 $27 $10 T 4 5 4 5 5 5 unknown #
-plane-surface $-1 -1 -1 $-1 4.5 5 4.5 0 -1 0 0 0 -1 forward_v I I I I #
-coedge $-1 -1 -1 $-1 $28 $29 $30 $31 reversed $11 $-1 #
-face $-1 -1 -1 $-1 $32 $33 $7 $-1 $34 reversed single T 5 4 4 5 5 5 F #
-loop $-1 -1 -1 $-1 $-1 $35 $13 T 4 5 4 5 5 5 unknown #
-plane-surface $-1 -1 -1 $-1 4.5 5 4.5 0 -1 0 0 0 -1 forward_v I I I I #
-coedge $-1 -1 -1 $-1 $36 $37 $38 $39 forward $14 $-1 #
-face $-1 -1 -1 $-1 $40 $41 $6 $-1 $42 reversed single T 4 4 4 14 4 14 F #
-loop $-1 -1 -1 $-1 $-1 $43 $16 T 5 4 4 5 5 5 unknown #
-plane-surface $-1 -1 -1 $-1 5 4.5 4.5 -1 0 0 0 0 1 forward_v I I I I #
-coedge $-1 -1 -1 $-1 $44 $45 $46 $47 reversed $17 $-1 #
-coedge $-1 -1 -1 $-1 $48 $19 $49 $50 reversed $11 $-1 #
-coedge $-1 -1 -1 $-1 $19 $48 $44 $51 reversed $11 $-1 #
-coedge $-1 -1 -1 $-1 $46 $43 $19 $31 forward $25 $-1 #
-edge $-1 -1 -1 $-1 $52 -0.5 $53 0.5 $30 $54 forward @7 unknown T 5 4 5 5 5 5 #
-face $-1 -1 -1 $-1 $55 $56 $7 $-1 $57 reversed single T 4 4 4 4 5 5 F #
-loop $-1 -1 -1 $-1 $-1 $58 $20 T 5 4 4 5 5 5 unknown #
-plane-surface $-1 -1 -1 $-1 5 4.5 4.5 -1 0 0 0 0 1 forward_v I I I I #
-coedge $-1 -1 -1 $-1 $59 $60 $61 $62 forward $21 $-1 #
-coedge $-1 -1 -1 $-1 $63 $23 $60 $64 forward $14 $-1 #
-coedge $-1 -1 -1 $-1 $23 $63 $65 $66 forward $14 $-1 #
-coedge $-1 -1 -1 $-1 $58 $61 $23 $39 reversed $33 $-1 #
-edge $-1 -1 -1 $-1 $67 -0.5 $68 0.5 $38 $69 forward @7 unknown T 5 4 5 5 5 5 #
-face $-1 -1 -1 $-1 $70 $71 $6 $-1 $72 forward single T 4 4 14 14 14 14 F #
-loop $-1 -1 -1 $-1 $-1 $49 $24 T 4 4 4 14 4 14 unknown #
-plane-surface $-1 -1 -1 $-1 9 4 9 0 1 0 0 0 1 forward_v I I I I #
-coedge $-1 -1 -1 $-1 $30 $73 $74 $75 reversed $25 $-1 #
-coedge $-1 -1 -1 $-1 $76 $27 $29 $51 forward $17 $-1 #
-coedge $-1 -1 -1 $-1 $27 $76 $77 $78 reversed $17 $-1 #
-coedge $-1 -1 -1 $-1 $73 $30 $27 $47 forward $25 $-1 #
-edge $-1 -1 -1 $-1 $53 -0.5 $79 0.5 $46 $80 forward @7 unknown T 5 5 4 5 5 5 #
-coedge $-1 -1 -1 $-1 $29 $28 $81 $82 reversed $11 $-1 #
-coedge $-1 -1 -1 $-1 $74 $83 $28 $50 forward $41 $-1 #
-edge $-1 -1 -1 $-1 $84 -2.75 $52 -1.75 $49 $85 forward @7 unknown T 4 4 5 5 4 5 #
-edge $-1 -1 -1 $-1 $53 -0.5 $86 0.5 $44 $87 forward @7 unknown T 4 5 5 5 5 5 #
-vertex $-1 -1 -1 $-1 $50 $88 #
-vertex $-1 -1 -1 $-1 $31 $89 #
-straight-curve $-1 -1 -1 $-1 5 4.5 5 0 1 0 I I #
-face $-1 -1 -1 $-1 $90 $91 $7 $-1 $92 reversed single T 4 4 4 5 5 4 F #
-loop $-1 -1 -1 $-1 $-1 $93 $32 T 4 4 4 4 5 5 unknown #
-plane-surface $-1 -1 -1 $-1 4 9 9 1 0 0 0 0 -1 forward_v I I I I #
-coedge $-1 -1 -1 $-1 $94 $38 $95 $96 forward $33 $-1 #
-coedge $-1 -1 -1 $-1 $97 $35 $98 $99 forward $21 $-1 #
-coedge $-1 -1 -1 $-1 $35 $97 $36 $64 reversed $21 $-1 #
-coedge $-1 -1 -1 $-1 $38 $94 $35 $62 reversed $33 $-1 #
-edge $-1 -1 -1 $-1 $68 -0.5 $100 0.5 $61 $101 forward @7 unknown T 5 5 4 5 5 5 #
-coedge $-1 -1 -1 $-1 $37 $36 $93 $102 forward $14 $-1 #
-edge $-1 -1 -1 $-1 $68 -0.5 $103 0.5 $60 $104 forward @7 unknown T 4 5 5 5 5 5 #
-coedge $-1 -1 -1 $-1 $105 $95 $37 $66 reversed $106 $-1 #
-edge $-1 -1 -1 $-1 $107 -2.75 $67 -1.75 $65 $108 forward @7 unknown T 4 4 5 5 4 5 #
-vertex $-1 -1 -1 $-1 $66 $109 #
-vertex $-1 -1 -1 $-1 $39 $110 #
-straight-curve $-1 -1 -1 $-1 5 4.5 5 0 1 0 I I #
-face $-1 -1 -1 $-1 $111 $112 $6 $-1 $113 reversed single T 4 4 4 14 14 4 F #
-loop $-1 -1 -1 $-1 $-1 $114 $40 T 4 4 14 14 14 14 unknown #
-plane-surface $-1 -1 -1 $-1 9 9 14 0 0 1 1 0 0 forward_v I I I I #
-coedge $-1 -1 -1 $-1 $43 $46 $115 $116 reversed $25 $-1 #
-coedge $-1 -1 -1 $-1 $117 $49 $43 $75 forward $41 $-1 #
-edge $-1 -1 -1 $-1 $52 1.75 $118 2.75 $74 $119 forward @7 unknown T 5 4 4 5 4 5 #
-coedge $-1 -1 -1 $-1 $45 $44 $120 $121 reversed $17 $-1 #
-coedge $-1 -1 -1 $-1 $122 $115 $45 $78 forward $112 $-1 #
-edge $-1 -1 -1 $-1 $79 1.75 $123 2.75 $77 $124 forward @7 unknown T 4 5 4 5 5 4 #
-vertex $-1 -1 -1 $-1 $78 $125 #
-straight-curve $-1 -1 -1 $-1 5 5 4.5 0 0 -1 I I #
-coedge $-1 -1 -1 $-1 $126 $120 $48 $82 forward $127 $-1 #
-edge $-1 -1 -1 $-1 $86 1.75 $84 2.75 $81 $128 forward @7 unknown T 4 4 5 4 5 5 #
-coedge $-1 -1 -1 $-1 $49 $129 $126 $130 forward $41 $-1 #
-vertex $-1 -1 -1 $-1 $50 $131 #
-straight-curve $-1 -1 -1 $-1 6.75 4 5 1 0 0 I I #
-vertex $-1 -1 -1 $-1 $82 $132 #
-straight-curve $-1 -1 -1 $-1 4.5 5 5 -1 0 0 I I #
-point $-1 -1 -1 $-1 5 4 5 #
-point $-1 -1 -1 $-1 5 5 5 #
-face $-1 -1 -1 $-1 $-1 $106 $7 $-1 $133 reversed single T 4 4 4 5 4 5 F #
-loop $-1 -1 -1 $-1 $-1 $98 $55 T 4 4 4 5 5 4 unknown #
-plane-surface $-1 -1 -1 $-1 9 9 4 0 0 1 1 0 0 forward_v I I I I #
-coedge $-1 -1 -1 $-1 $134 $135 $63 $102 reversed $56 $-1 #
-coedge $-1 -1 -1 $-1 $61 $58 $136 $137 forward $33 $-1 #
-coedge $-1 -1 -1 $-1 $65 $138 $58 $96 reversed $106 $-1 #
-edge $-1 -1 -1 $-1 $67 1.75 $139 2.75 $95 $140 forward @7 unknown T 5 4 4 5 4 5 #
-coedge $-1 -1 -1 $-1 $60 $59 $134 $141 forward $21 $-1 #
-coedge $-1 -1 -1 $-1 $136 $142 $59 $99 reversed $91 $-1 #
-edge $-1 -1 -1 $-1 $100 1.75 $143 2.75 $98 $144 forward @7 unknown T 4 5 4 5 5 4 #
-vertex $-1 -1 -1 $-1 $99 $145 #
-straight-curve $-1 -1 -1 $-1 5 5 4.5 0 0 -1 I I #
-edge $-1 -1 -1 $-1 $103 1.75 $107 2.75 $93 $146 forward @7 unknown T 4 4 5 4 5 5 #
-vertex $-1 -1 -1 $-1 $102 $147 #
-straight-curve $-1 -1 -1 $-1 4.5 5 5 -1 0 0 I I #
-coedge $-1 -1 -1 $-1 $138 $65 $135 $148 forward $106 $-1 #
-loop $-1 -1 -1 $-1 $-1 $65 $90 T 4 4 4 5 4 5 unknown #
-vertex $-1 -1 -1 $-1 $148 $149 #
-straight-curve $-1 -1 -1 $-1 6.75 4 5 1 0 0 I I #
-point $-1 -1 -1 $-1 5 4 5 #
-point $-1 -1 -1 $-1 5 5 5 #
-face $-1 -1 -1 $-1 $150 $127 $6 $-1 $151 reversed single T 4 4 4 4 14 14 F #
-loop $-1 -1 -1 $-1 $-1 $77 $70 T 4 4 4 14 14 4 unknown #
-plane-surface $-1 -1 -1 $-1 9 9 4 0 0 1 1 0 0 forward_v I I I I #
-coedge $-1 -1 -1 $-1 $152 $153 $154 $155 forward $71 $-1 #
-coedge $-1 -1 -1 $-1 $77 $156 $73 $116 forward $112 $-1 #
-edge $-1 -1 -1 $-1 $118 -2.75 $79 -1.75 $115 $157 forward @7 unknown T 5 4 4 5 5 4 #
-coedge $-1 -1 -1 $-1 $158 $74 $156 $159 reversed $41 $-1 #
-vertex $-1 -1 -1 $-1 $75 $160 #
-straight-curve $-1 -1 -1 $-1 5 4 6.75 0 0 -1 I I #
-coedge $-1 -1 -1 $-1 $81 $161 $76 $121 forward $127 $-1 #
-edge $-1 -1 -1 $-1 $123 -2.75 $86 -1.75 $120 $162 forward @7 unknown T 4 5 4 4 5 5 #
-coedge $-1 -1 -1 $-1 $163 $77 $161 $164 forward $112 $-1 #
-vertex $-1 -1 -1 $-1 $164 $165 #
-straight-curve $-1 -1 -1 $-1 6.75 5 4 -1 0 0 I I #
-point $-1 -1 -1 $-1 5 5 4 #
-coedge $-1 -1 -1 $-1 $166 $81 $83 $130 reversed $127 $-1 #
-loop $-1 -1 -1 $-1 $-1 $81 $111 T 4 4 4 4 14 14 unknown #
-straight-curve $-1 -1 -1 $-1 4 6.75 5 0 -1 0 I I #
-coedge $-1 -1 -1 $-1 $83 $158 $153 $167 reversed $41 $-1 #
-edge $-1 -1 -1 $-1 $168 -5 $84 4 $126 $169 forward @7 unknown T 4 4 5 4 4 14 #
-point $-1 -1 -1 $-1 4 4 5 #
-point $-1 -1 -1 $-1 4 5 5 #
-plane-surface $-1 -1 -1 $-1 9 4 9 0 1 0 0 0 1 forward_v I I I I #
-coedge $-1 -1 -1 $-1 $170 $93 $97 $141 reversed $56 $-1 #
-coedge $-1 -1 -1 $-1 $93 $170 $105 $148 reversed $56 $-1 #
-coedge $-1 -1 -1 $-1 $171 $98 $94 $137 reversed $91 $-1 #
-edge $-1 -1 -1 $-1 $139 -2.75 $100 -1.75 $136 $172 forward @7 unknown T 5 4 4 5 5 4 #
-coedge $-1 -1 -1 $-1 $95 $105 $171 $173 reversed $106 $-1 #
-vertex $-1 -1 -1 $-1 $173 $174 #
-straight-curve $-1 -1 -1 $-1 5 4 6.75 0 0 -1 I I #
-edge $-1 -1 -1 $-1 $143 -2.75 $103 -1.75 $134 $175 forward @7 unknown T 4 5 4 4 5 5 #
-coedge $-1 -1 -1 $-1 $98 $171 $170 $176 forward $91 $-1 #
-vertex $-1 -1 -1 $-1 $99 $177 #
-straight-curve $-1 -1 -1 $-1 6.75 5 4 -1 0 0 I I #
-point $-1 -1 -1 $-1 5 5 4 #
-straight-curve $-1 -1 -1 $-1 4 6.75 5 0 -1 0 I I #
-point $-1 -1 -1 $-1 4 5 5 #
-edge $-1 -1 -1 $-1 $107 4 $178 5 $135 $179 forward @7 unknown T 4 4 4 4 4 5 #
-point $-1 -1 -1 $-1 4 4 5 #
-face $-1 -1 -1 $-1 $180 $181 $6 $-1 $182 reversed single T 4 14 4 14 14 14 F #
-plane-surface $-1 -1 -1 $-1 4 9 9 1 0 0 0 0 -1 forward_v I I I I #
-coedge $-1 -1 -1 $-1 $183 $114 $184 $185 forward $71 $-1 #
-coedge $-1 -1 -1 $-1 $114 $183 $129 $167 forward $71 $-1 #
-coedge $-1 -1 -1 $-1 $186 $187 $114 $155 reversed $188 $-1 #
-edge $-1 -1 -1 $-1 $189 -5 $190 5 $154 $191 forward @7 unknown T 14 4 14 14 14 14 #
-coedge $-1 -1 -1 $-1 $115 $192 $117 $159 forward $112 $-1 #
-straight-curve $-1 -1 -1 $-1 5 6.75 4 0 1 -0 I I #
-coedge $-1 -1 -1 $-1 $129 $117 $186 $193 reversed $41 $-1 #
-edge $-1 -1 -1 $-1 $194 -5 $118 4 $117 $195 forward @7 unknown T 5 4 4 14 4 4 #
-point $-1 -1 -1 $-1 5 4 4 #
-coedge $-1 -1 -1 $-1 $120 $196 $122 $164 reversed $127 $-1 #
-straight-curve $-1 -1 -1 $-1 4 5 6.75 -0 0 1 I I #
-coedge $-1 -1 -1 $-1 $192 $122 $197 $198 forward $112 $-1 #
-edge $-1 -1 -1 $-1 $123 -4 $199 5 $161 $200 forward @7 unknown T 4 5 4 4 14 4 #
-point $-1 -1 -1 $-1 4 5 4 #
-coedge $-1 -1 -1 $-1 $196 $126 $183 $201 reversed $127 $-1 #
-edge $-1 -1 -1 $-1 $168 -5 $189 5 $129 $202 forward @7 unknown T 4 4 14 14 4 14 #
-vertex $-1 -1 -1 $-1 $201 $203 #
-straight-curve $-1 -1 -1 $-1 4 4 9 0 0 -1 I I #
-coedge $-1 -1 -1 $-1 $135 $134 $142 $176 reversed $56 $-1 #
-coedge $-1 -1 -1 $-1 $142 $136 $138 $173 forward $91 $-1 #
-straight-curve $-1 -1 -1 $-1 5 6.75 4 0 1 -0 I I #
-edge $-1 -1 -1 $-1 $139 4 $178 5 $138 $204 forward @7 unknown T 4 4 4 5 4 4 #
-point $-1 -1 -1 $-1 5 4 4 #
-straight-curve $-1 -1 -1 $-1 4 5 6.75 -0 0 1 I I #
-edge $-1 -1 -1 $-1 $178 -5 $143 -4 $170 $205 forward @7 unknown T 4 4 4 4 5 4 #
-point $-1 -1 -1 $-1 4 5 4 #
-vertex $-1 -1 -1 $-1 $176 $206 #
-straight-curve $-1 -1 -1 $-1 4 4 9 0 0 -1 I I #
-face $-1 -1 -1 $-1 $-1 $188 $6 $-1 $207 reversed single T 14 4 4 14 14 14 F #
-loop $-1 -1 -1 $-1 $-1 $208 $150 T 4 14 4 14 14 14 unknown #
-plane-surface $-1 -1 -1 $-1 9 14 9 0 -1 0 0 0 -1 forward_v I I I I #
-coedge $-1 -1 -1 $-1 $153 $152 $166 $201 forward $71 $-1 #
-coedge $-1 -1 -1 $-1 $208 $209 $152 $185 reversed $181 $-1 #
-edge $-1 -1 -1 $-1 $190 -5 $210 5 $184 $211 forward @7 unknown T 4 14 14 14 14 14 #
-coedge $-1 -1 -1 $-1 $212 $154 $158 $193 forward $188 $-1 #
-coedge $-1 -1 -1 $-1 $154 $212 $208 $213 reversed $188 $-1 #
-loop $-1 -1 -1 $-1 $-1 $186 $180 T 14 4 4 14 14 14 unknown #
-vertex $-1 -1 -1 $-1 $155 $214 #
-vertex $-1 -1 -1 $-1 $155 $215 #
-straight-curve $-1 -1 -1 $-1 14 9 14 0 1 0 I I #
-coedge $-1 -1 -1 $-1 $156 $163 $212 $216 forward $112 $-1 #
-edge $-1 -1 -1 $-1 $189 -5 $194 5 $186 $217 forward @7 unknown T 14 4 4 14 4 14 #
-vertex $-1 -1 -1 $-1 $193 $218 #
-straight-curve $-1 -1 -1 $-1 9 4 4 -1 0 0 I I #
-coedge $-1 -1 -1 $-1 $161 $166 $209 $219 forward $127 $-1 #
-coedge $-1 -1 -1 $-1 $209 $208 $163 $198 reversed $181 $-1 #
-edge $-1 -1 -1 $-1 $199 -5 $220 5 $197 $221 forward @7 unknown T 4 14 4 14 14 4 #
-vertex $-1 -1 -1 $-1 $198 $222 #
-straight-curve $-1 -1 -1 $-1 4 9 4 0 1 0 I I #
-edge $-1 -1 -1 $-1 $210 -5 $168 5 $166 $223 forward @7 unknown T 4 4 14 4 14 14 #
-straight-curve $-1 -1 -1 $-1 9 4 14 1 0 0 I I #
-point $-1 -1 -1 $-1 4 4 14 #
-straight-curve $-1 -1 -1 $-1 9 4 4 -1 0 0 I I #
-straight-curve $-1 -1 -1 $-1 4 9 4 0 1 0 I I #
-point $-1 -1 -1 $-1 4 4 4 #
-plane-surface $-1 -1 -1 $-1 14 9 9 -1 0 0 0 0 1 forward_v I I I I #
-coedge $-1 -1 -1 $-1 $197 $184 $187 $213 forward $181 $-1 #
-coedge $-1 -1 -1 $-1 $184 $197 $196 $219 reversed $181 $-1 #
-vertex $-1 -1 -1 $-1 $185 $224 #
-straight-curve $-1 -1 -1 $-1 9 14 14 -1 0 0 I I #
-coedge $-1 -1 -1 $-1 $187 $186 $192 $216 reversed $188 $-1 #
-edge $-1 -1 -1 $-1 $190 -5 $220 5 $187 $225 forward @7 unknown T 14 14 4 14 14 14 #
-point $-1 -1 -1 $-1 14 4 14 #
-point $-1 -1 -1 $-1 14 14 14 #
-edge $-1 -1 -1 $-1 $220 -5 $194 5 $212 $226 forward @7 unknown T 14 4 4 14 14 4 #
-straight-curve $-1 -1 -1 $-1 14 4 9 0 0 -1 I I #
-point $-1 -1 -1 $-1 14 4 4 #
-edge $-1 -1 -1 $-1 $210 -5 $199 5 $209 $227 forward @7 unknown T 4 14 4 4 14 14 #
-vertex $-1 -1 -1 $-1 $216 $228 #
-straight-curve $-1 -1 -1 $-1 9 14 4 1 0 0 I I #
-point $-1 -1 -1 $-1 4 14 4 #
-straight-curve $-1 -1 -1 $-1 4 9 14 0 -1 0 I I #
-point $-1 -1 -1 $-1 4 14 14 #
-straight-curve $-1 -1 -1 $-1 14 14 9 0 0 -1 I I #
-straight-curve $-1 -1 -1 $-1 14 9 4 0 -1 0 I I #
-straight-curve $-1 -1 -1 $-1 4 14 9 0 0 -1 I I #
-point $-1 -1 -1 $-1 14 14 4 #
-End-of-ACIS-data
\ No newline at end of file
1
0
Author: kraftche
Date: 2008-12-04 10:23:02 -0600 (Thu, 04 Dec 2008)
New Revision: 2465
Added:
cgm/trunk/test/webcut_with_brick.sat
Log:
add missing test input file: fixes broken 'make dist'
Added: cgm/trunk/test/webcut_with_brick.sat
===================================================================
--- cgm/trunk/test/webcut_with_brick.sat (rev 0)
+++ cgm/trunk/test/webcut_with_brick.sat 2008-12-04 16:23:02 UTC (rev 2465)
@@ -0,0 +1,233 @@
+1600 0 2 0
+10 Cubit 10.2 17 ACIS 16.0.7 Linux 24 Wed Nov 26 13:51:34 2008
+1 9.9999999999999995e-07 1e-10
+body $-1 -1 -1 $-1 $2 $-1 $3 T 4 4 4 14 14 14 #
+body $-1 -1 -1 $-1 $4 $-1 $5 T 4 4 4 5 5 5 #
+lump $-1 -1 -1 $-1 $-1 $6 $0 T 4 4 4 14 14 14 #
+transform $-1 -1 1 0 0 0 1 0 0 0 1 0 0 0 1 no_rotate no_reflect no_shear #
+lump $-1 -1 -1 $-1 $-1 $7 $1 T 4 4 4 5 5 5 #
+transform $-1 -1 1 0 0 0 1 0 0 0 1 0 0 0 1 no_rotate no_reflect no_shear #
+shell $-1 -1 -1 $-1 $-1 $-1 $8 $-1 $2 T 4 4 4 14 14 14 #
+shell $-1 -1 -1 $-1 $-1 $-1 $9 $-1 $4 T 4 4 4 5 5 5 #
+face $-1 -1 -1 $-1 $10 $11 $6 $-1 $12 reversed single T 4 4 5 5 5 5 F #
+face $-1 -1 -1 $-1 $13 $14 $7 $-1 $15 forward single T 4 4 5 5 5 5 F #
+face $-1 -1 -1 $-1 $16 $17 $6 $-1 $18 forward single T 4 5 4 5 5 5 F #
+loop $-1 -1 -1 $-1 $-1 $19 $8 T 4 4 5 5 5 5 unknown #
+plane-surface $-1 -1 -1 $-1 4.5 4.5 5 0 0 1 1 0 0 forward_v I I I I #
+face $-1 -1 -1 $-1 $20 $21 $7 $-1 $22 reversed single T 4 5 4 5 5 5 F #
+loop $-1 -1 -1 $-1 $-1 $23 $9 T 4 4 5 5 5 5 unknown #
+plane-surface $-1 -1 -1 $-1 4.5 4.5 5 0 0 1 1 0 0 forward_v I I I I #
+face $-1 -1 -1 $-1 $24 $25 $6 $-1 $26 forward single T 5 4 4 5 5 5 F #
+loop $-1 -1 -1 $-1 $-1 $27 $10 T 4 5 4 5 5 5 unknown #
+plane-surface $-1 -1 -1 $-1 4.5 5 4.5 0 -1 0 0 0 -1 forward_v I I I I #
+coedge $-1 -1 -1 $-1 $28 $29 $30 $31 reversed $11 $-1 #
+face $-1 -1 -1 $-1 $32 $33 $7 $-1 $34 reversed single T 5 4 4 5 5 5 F #
+loop $-1 -1 -1 $-1 $-1 $35 $13 T 4 5 4 5 5 5 unknown #
+plane-surface $-1 -1 -1 $-1 4.5 5 4.5 0 -1 0 0 0 -1 forward_v I I I I #
+coedge $-1 -1 -1 $-1 $36 $37 $38 $39 forward $14 $-1 #
+face $-1 -1 -1 $-1 $40 $41 $6 $-1 $42 reversed single T 4 4 4 14 4 14 F #
+loop $-1 -1 -1 $-1 $-1 $43 $16 T 5 4 4 5 5 5 unknown #
+plane-surface $-1 -1 -1 $-1 5 4.5 4.5 -1 0 0 0 0 1 forward_v I I I I #
+coedge $-1 -1 -1 $-1 $44 $45 $46 $47 reversed $17 $-1 #
+coedge $-1 -1 -1 $-1 $48 $19 $49 $50 reversed $11 $-1 #
+coedge $-1 -1 -1 $-1 $19 $48 $44 $51 reversed $11 $-1 #
+coedge $-1 -1 -1 $-1 $46 $43 $19 $31 forward $25 $-1 #
+edge $-1 -1 -1 $-1 $52 -0.5 $53 0.5 $30 $54 forward @7 unknown T 5 4 5 5 5 5 #
+face $-1 -1 -1 $-1 $55 $56 $7 $-1 $57 reversed single T 4 4 4 4 5 5 F #
+loop $-1 -1 -1 $-1 $-1 $58 $20 T 5 4 4 5 5 5 unknown #
+plane-surface $-1 -1 -1 $-1 5 4.5 4.5 -1 0 0 0 0 1 forward_v I I I I #
+coedge $-1 -1 -1 $-1 $59 $60 $61 $62 forward $21 $-1 #
+coedge $-1 -1 -1 $-1 $63 $23 $60 $64 forward $14 $-1 #
+coedge $-1 -1 -1 $-1 $23 $63 $65 $66 forward $14 $-1 #
+coedge $-1 -1 -1 $-1 $58 $61 $23 $39 reversed $33 $-1 #
+edge $-1 -1 -1 $-1 $67 -0.5 $68 0.5 $38 $69 forward @7 unknown T 5 4 5 5 5 5 #
+face $-1 -1 -1 $-1 $70 $71 $6 $-1 $72 forward single T 4 4 14 14 14 14 F #
+loop $-1 -1 -1 $-1 $-1 $49 $24 T 4 4 4 14 4 14 unknown #
+plane-surface $-1 -1 -1 $-1 9 4 9 0 1 0 0 0 1 forward_v I I I I #
+coedge $-1 -1 -1 $-1 $30 $73 $74 $75 reversed $25 $-1 #
+coedge $-1 -1 -1 $-1 $76 $27 $29 $51 forward $17 $-1 #
+coedge $-1 -1 -1 $-1 $27 $76 $77 $78 reversed $17 $-1 #
+coedge $-1 -1 -1 $-1 $73 $30 $27 $47 forward $25 $-1 #
+edge $-1 -1 -1 $-1 $53 -0.5 $79 0.5 $46 $80 forward @7 unknown T 5 5 4 5 5 5 #
+coedge $-1 -1 -1 $-1 $29 $28 $81 $82 reversed $11 $-1 #
+coedge $-1 -1 -1 $-1 $74 $83 $28 $50 forward $41 $-1 #
+edge $-1 -1 -1 $-1 $84 -2.75 $52 -1.75 $49 $85 forward @7 unknown T 4 4 5 5 4 5 #
+edge $-1 -1 -1 $-1 $53 -0.5 $86 0.5 $44 $87 forward @7 unknown T 4 5 5 5 5 5 #
+vertex $-1 -1 -1 $-1 $50 $88 #
+vertex $-1 -1 -1 $-1 $31 $89 #
+straight-curve $-1 -1 -1 $-1 5 4.5 5 0 1 0 I I #
+face $-1 -1 -1 $-1 $90 $91 $7 $-1 $92 reversed single T 4 4 4 5 5 4 F #
+loop $-1 -1 -1 $-1 $-1 $93 $32 T 4 4 4 4 5 5 unknown #
+plane-surface $-1 -1 -1 $-1 4 9 9 1 0 0 0 0 -1 forward_v I I I I #
+coedge $-1 -1 -1 $-1 $94 $38 $95 $96 forward $33 $-1 #
+coedge $-1 -1 -1 $-1 $97 $35 $98 $99 forward $21 $-1 #
+coedge $-1 -1 -1 $-1 $35 $97 $36 $64 reversed $21 $-1 #
+coedge $-1 -1 -1 $-1 $38 $94 $35 $62 reversed $33 $-1 #
+edge $-1 -1 -1 $-1 $68 -0.5 $100 0.5 $61 $101 forward @7 unknown T 5 5 4 5 5 5 #
+coedge $-1 -1 -1 $-1 $37 $36 $93 $102 forward $14 $-1 #
+edge $-1 -1 -1 $-1 $68 -0.5 $103 0.5 $60 $104 forward @7 unknown T 4 5 5 5 5 5 #
+coedge $-1 -1 -1 $-1 $105 $95 $37 $66 reversed $106 $-1 #
+edge $-1 -1 -1 $-1 $107 -2.75 $67 -1.75 $65 $108 forward @7 unknown T 4 4 5 5 4 5 #
+vertex $-1 -1 -1 $-1 $66 $109 #
+vertex $-1 -1 -1 $-1 $39 $110 #
+straight-curve $-1 -1 -1 $-1 5 4.5 5 0 1 0 I I #
+face $-1 -1 -1 $-1 $111 $112 $6 $-1 $113 reversed single T 4 4 4 14 14 4 F #
+loop $-1 -1 -1 $-1 $-1 $114 $40 T 4 4 14 14 14 14 unknown #
+plane-surface $-1 -1 -1 $-1 9 9 14 0 0 1 1 0 0 forward_v I I I I #
+coedge $-1 -1 -1 $-1 $43 $46 $115 $116 reversed $25 $-1 #
+coedge $-1 -1 -1 $-1 $117 $49 $43 $75 forward $41 $-1 #
+edge $-1 -1 -1 $-1 $52 1.75 $118 2.75 $74 $119 forward @7 unknown T 5 4 4 5 4 5 #
+coedge $-1 -1 -1 $-1 $45 $44 $120 $121 reversed $17 $-1 #
+coedge $-1 -1 -1 $-1 $122 $115 $45 $78 forward $112 $-1 #
+edge $-1 -1 -1 $-1 $79 1.75 $123 2.75 $77 $124 forward @7 unknown T 4 5 4 5 5 4 #
+vertex $-1 -1 -1 $-1 $78 $125 #
+straight-curve $-1 -1 -1 $-1 5 5 4.5 0 0 -1 I I #
+coedge $-1 -1 -1 $-1 $126 $120 $48 $82 forward $127 $-1 #
+edge $-1 -1 -1 $-1 $86 1.75 $84 2.75 $81 $128 forward @7 unknown T 4 4 5 4 5 5 #
+coedge $-1 -1 -1 $-1 $49 $129 $126 $130 forward $41 $-1 #
+vertex $-1 -1 -1 $-1 $50 $131 #
+straight-curve $-1 -1 -1 $-1 6.75 4 5 1 0 0 I I #
+vertex $-1 -1 -1 $-1 $82 $132 #
+straight-curve $-1 -1 -1 $-1 4.5 5 5 -1 0 0 I I #
+point $-1 -1 -1 $-1 5 4 5 #
+point $-1 -1 -1 $-1 5 5 5 #
+face $-1 -1 -1 $-1 $-1 $106 $7 $-1 $133 reversed single T 4 4 4 5 4 5 F #
+loop $-1 -1 -1 $-1 $-1 $98 $55 T 4 4 4 5 5 4 unknown #
+plane-surface $-1 -1 -1 $-1 9 9 4 0 0 1 1 0 0 forward_v I I I I #
+coedge $-1 -1 -1 $-1 $134 $135 $63 $102 reversed $56 $-1 #
+coedge $-1 -1 -1 $-1 $61 $58 $136 $137 forward $33 $-1 #
+coedge $-1 -1 -1 $-1 $65 $138 $58 $96 reversed $106 $-1 #
+edge $-1 -1 -1 $-1 $67 1.75 $139 2.75 $95 $140 forward @7 unknown T 5 4 4 5 4 5 #
+coedge $-1 -1 -1 $-1 $60 $59 $134 $141 forward $21 $-1 #
+coedge $-1 -1 -1 $-1 $136 $142 $59 $99 reversed $91 $-1 #
+edge $-1 -1 -1 $-1 $100 1.75 $143 2.75 $98 $144 forward @7 unknown T 4 5 4 5 5 4 #
+vertex $-1 -1 -1 $-1 $99 $145 #
+straight-curve $-1 -1 -1 $-1 5 5 4.5 0 0 -1 I I #
+edge $-1 -1 -1 $-1 $103 1.75 $107 2.75 $93 $146 forward @7 unknown T 4 4 5 4 5 5 #
+vertex $-1 -1 -1 $-1 $102 $147 #
+straight-curve $-1 -1 -1 $-1 4.5 5 5 -1 0 0 I I #
+coedge $-1 -1 -1 $-1 $138 $65 $135 $148 forward $106 $-1 #
+loop $-1 -1 -1 $-1 $-1 $65 $90 T 4 4 4 5 4 5 unknown #
+vertex $-1 -1 -1 $-1 $148 $149 #
+straight-curve $-1 -1 -1 $-1 6.75 4 5 1 0 0 I I #
+point $-1 -1 -1 $-1 5 4 5 #
+point $-1 -1 -1 $-1 5 5 5 #
+face $-1 -1 -1 $-1 $150 $127 $6 $-1 $151 reversed single T 4 4 4 4 14 14 F #
+loop $-1 -1 -1 $-1 $-1 $77 $70 T 4 4 4 14 14 4 unknown #
+plane-surface $-1 -1 -1 $-1 9 9 4 0 0 1 1 0 0 forward_v I I I I #
+coedge $-1 -1 -1 $-1 $152 $153 $154 $155 forward $71 $-1 #
+coedge $-1 -1 -1 $-1 $77 $156 $73 $116 forward $112 $-1 #
+edge $-1 -1 -1 $-1 $118 -2.75 $79 -1.75 $115 $157 forward @7 unknown T 5 4 4 5 5 4 #
+coedge $-1 -1 -1 $-1 $158 $74 $156 $159 reversed $41 $-1 #
+vertex $-1 -1 -1 $-1 $75 $160 #
+straight-curve $-1 -1 -1 $-1 5 4 6.75 0 0 -1 I I #
+coedge $-1 -1 -1 $-1 $81 $161 $76 $121 forward $127 $-1 #
+edge $-1 -1 -1 $-1 $123 -2.75 $86 -1.75 $120 $162 forward @7 unknown T 4 5 4 4 5 5 #
+coedge $-1 -1 -1 $-1 $163 $77 $161 $164 forward $112 $-1 #
+vertex $-1 -1 -1 $-1 $164 $165 #
+straight-curve $-1 -1 -1 $-1 6.75 5 4 -1 0 0 I I #
+point $-1 -1 -1 $-1 5 5 4 #
+coedge $-1 -1 -1 $-1 $166 $81 $83 $130 reversed $127 $-1 #
+loop $-1 -1 -1 $-1 $-1 $81 $111 T 4 4 4 4 14 14 unknown #
+straight-curve $-1 -1 -1 $-1 4 6.75 5 0 -1 0 I I #
+coedge $-1 -1 -1 $-1 $83 $158 $153 $167 reversed $41 $-1 #
+edge $-1 -1 -1 $-1 $168 -5 $84 4 $126 $169 forward @7 unknown T 4 4 5 4 4 14 #
+point $-1 -1 -1 $-1 4 4 5 #
+point $-1 -1 -1 $-1 4 5 5 #
+plane-surface $-1 -1 -1 $-1 9 4 9 0 1 0 0 0 1 forward_v I I I I #
+coedge $-1 -1 -1 $-1 $170 $93 $97 $141 reversed $56 $-1 #
+coedge $-1 -1 -1 $-1 $93 $170 $105 $148 reversed $56 $-1 #
+coedge $-1 -1 -1 $-1 $171 $98 $94 $137 reversed $91 $-1 #
+edge $-1 -1 -1 $-1 $139 -2.75 $100 -1.75 $136 $172 forward @7 unknown T 5 4 4 5 5 4 #
+coedge $-1 -1 -1 $-1 $95 $105 $171 $173 reversed $106 $-1 #
+vertex $-1 -1 -1 $-1 $173 $174 #
+straight-curve $-1 -1 -1 $-1 5 4 6.75 0 0 -1 I I #
+edge $-1 -1 -1 $-1 $143 -2.75 $103 -1.75 $134 $175 forward @7 unknown T 4 5 4 4 5 5 #
+coedge $-1 -1 -1 $-1 $98 $171 $170 $176 forward $91 $-1 #
+vertex $-1 -1 -1 $-1 $99 $177 #
+straight-curve $-1 -1 -1 $-1 6.75 5 4 -1 0 0 I I #
+point $-1 -1 -1 $-1 5 5 4 #
+straight-curve $-1 -1 -1 $-1 4 6.75 5 0 -1 0 I I #
+point $-1 -1 -1 $-1 4 5 5 #
+edge $-1 -1 -1 $-1 $107 4 $178 5 $135 $179 forward @7 unknown T 4 4 4 4 4 5 #
+point $-1 -1 -1 $-1 4 4 5 #
+face $-1 -1 -1 $-1 $180 $181 $6 $-1 $182 reversed single T 4 14 4 14 14 14 F #
+plane-surface $-1 -1 -1 $-1 4 9 9 1 0 0 0 0 -1 forward_v I I I I #
+coedge $-1 -1 -1 $-1 $183 $114 $184 $185 forward $71 $-1 #
+coedge $-1 -1 -1 $-1 $114 $183 $129 $167 forward $71 $-1 #
+coedge $-1 -1 -1 $-1 $186 $187 $114 $155 reversed $188 $-1 #
+edge $-1 -1 -1 $-1 $189 -5 $190 5 $154 $191 forward @7 unknown T 14 4 14 14 14 14 #
+coedge $-1 -1 -1 $-1 $115 $192 $117 $159 forward $112 $-1 #
+straight-curve $-1 -1 -1 $-1 5 6.75 4 0 1 -0 I I #
+coedge $-1 -1 -1 $-1 $129 $117 $186 $193 reversed $41 $-1 #
+edge $-1 -1 -1 $-1 $194 -5 $118 4 $117 $195 forward @7 unknown T 5 4 4 14 4 4 #
+point $-1 -1 -1 $-1 5 4 4 #
+coedge $-1 -1 -1 $-1 $120 $196 $122 $164 reversed $127 $-1 #
+straight-curve $-1 -1 -1 $-1 4 5 6.75 -0 0 1 I I #
+coedge $-1 -1 -1 $-1 $192 $122 $197 $198 forward $112 $-1 #
+edge $-1 -1 -1 $-1 $123 -4 $199 5 $161 $200 forward @7 unknown T 4 5 4 4 14 4 #
+point $-1 -1 -1 $-1 4 5 4 #
+coedge $-1 -1 -1 $-1 $196 $126 $183 $201 reversed $127 $-1 #
+edge $-1 -1 -1 $-1 $168 -5 $189 5 $129 $202 forward @7 unknown T 4 4 14 14 4 14 #
+vertex $-1 -1 -1 $-1 $201 $203 #
+straight-curve $-1 -1 -1 $-1 4 4 9 0 0 -1 I I #
+coedge $-1 -1 -1 $-1 $135 $134 $142 $176 reversed $56 $-1 #
+coedge $-1 -1 -1 $-1 $142 $136 $138 $173 forward $91 $-1 #
+straight-curve $-1 -1 -1 $-1 5 6.75 4 0 1 -0 I I #
+edge $-1 -1 -1 $-1 $139 4 $178 5 $138 $204 forward @7 unknown T 4 4 4 5 4 4 #
+point $-1 -1 -1 $-1 5 4 4 #
+straight-curve $-1 -1 -1 $-1 4 5 6.75 -0 0 1 I I #
+edge $-1 -1 -1 $-1 $178 -5 $143 -4 $170 $205 forward @7 unknown T 4 4 4 4 5 4 #
+point $-1 -1 -1 $-1 4 5 4 #
+vertex $-1 -1 -1 $-1 $176 $206 #
+straight-curve $-1 -1 -1 $-1 4 4 9 0 0 -1 I I #
+face $-1 -1 -1 $-1 $-1 $188 $6 $-1 $207 reversed single T 14 4 4 14 14 14 F #
+loop $-1 -1 -1 $-1 $-1 $208 $150 T 4 14 4 14 14 14 unknown #
+plane-surface $-1 -1 -1 $-1 9 14 9 0 -1 0 0 0 -1 forward_v I I I I #
+coedge $-1 -1 -1 $-1 $153 $152 $166 $201 forward $71 $-1 #
+coedge $-1 -1 -1 $-1 $208 $209 $152 $185 reversed $181 $-1 #
+edge $-1 -1 -1 $-1 $190 -5 $210 5 $184 $211 forward @7 unknown T 4 14 14 14 14 14 #
+coedge $-1 -1 -1 $-1 $212 $154 $158 $193 forward $188 $-1 #
+coedge $-1 -1 -1 $-1 $154 $212 $208 $213 reversed $188 $-1 #
+loop $-1 -1 -1 $-1 $-1 $186 $180 T 14 4 4 14 14 14 unknown #
+vertex $-1 -1 -1 $-1 $155 $214 #
+vertex $-1 -1 -1 $-1 $155 $215 #
+straight-curve $-1 -1 -1 $-1 14 9 14 0 1 0 I I #
+coedge $-1 -1 -1 $-1 $156 $163 $212 $216 forward $112 $-1 #
+edge $-1 -1 -1 $-1 $189 -5 $194 5 $186 $217 forward @7 unknown T 14 4 4 14 4 14 #
+vertex $-1 -1 -1 $-1 $193 $218 #
+straight-curve $-1 -1 -1 $-1 9 4 4 -1 0 0 I I #
+coedge $-1 -1 -1 $-1 $161 $166 $209 $219 forward $127 $-1 #
+coedge $-1 -1 -1 $-1 $209 $208 $163 $198 reversed $181 $-1 #
+edge $-1 -1 -1 $-1 $199 -5 $220 5 $197 $221 forward @7 unknown T 4 14 4 14 14 4 #
+vertex $-1 -1 -1 $-1 $198 $222 #
+straight-curve $-1 -1 -1 $-1 4 9 4 0 1 0 I I #
+edge $-1 -1 -1 $-1 $210 -5 $168 5 $166 $223 forward @7 unknown T 4 4 14 4 14 14 #
+straight-curve $-1 -1 -1 $-1 9 4 14 1 0 0 I I #
+point $-1 -1 -1 $-1 4 4 14 #
+straight-curve $-1 -1 -1 $-1 9 4 4 -1 0 0 I I #
+straight-curve $-1 -1 -1 $-1 4 9 4 0 1 0 I I #
+point $-1 -1 -1 $-1 4 4 4 #
+plane-surface $-1 -1 -1 $-1 14 9 9 -1 0 0 0 0 1 forward_v I I I I #
+coedge $-1 -1 -1 $-1 $197 $184 $187 $213 forward $181 $-1 #
+coedge $-1 -1 -1 $-1 $184 $197 $196 $219 reversed $181 $-1 #
+vertex $-1 -1 -1 $-1 $185 $224 #
+straight-curve $-1 -1 -1 $-1 9 14 14 -1 0 0 I I #
+coedge $-1 -1 -1 $-1 $187 $186 $192 $216 reversed $188 $-1 #
+edge $-1 -1 -1 $-1 $190 -5 $220 5 $187 $225 forward @7 unknown T 14 14 4 14 14 14 #
+point $-1 -1 -1 $-1 14 4 14 #
+point $-1 -1 -1 $-1 14 14 14 #
+edge $-1 -1 -1 $-1 $220 -5 $194 5 $212 $226 forward @7 unknown T 14 4 4 14 14 4 #
+straight-curve $-1 -1 -1 $-1 14 4 9 0 0 -1 I I #
+point $-1 -1 -1 $-1 14 4 4 #
+edge $-1 -1 -1 $-1 $210 -5 $199 5 $209 $227 forward @7 unknown T 4 14 4 4 14 14 #
+vertex $-1 -1 -1 $-1 $216 $228 #
+straight-curve $-1 -1 -1 $-1 9 14 4 1 0 0 I I #
+point $-1 -1 -1 $-1 4 14 4 #
+straight-curve $-1 -1 -1 $-1 4 9 14 0 -1 0 I I #
+point $-1 -1 -1 $-1 4 14 14 #
+straight-curve $-1 -1 -1 $-1 14 14 9 0 0 -1 I I #
+straight-curve $-1 -1 -1 $-1 14 9 4 0 -1 0 I I #
+straight-curve $-1 -1 -1 $-1 4 14 9 0 0 -1 I I #
+point $-1 -1 -1 $-1 14 14 4 #
+End-of-ACIS-data
\ No newline at end of file
1
0
Author: kraftche
Date: 2008-12-04 10:13:50 -0600 (Thu, 04 Dec 2008)
New Revision: 2464
Modified:
cgm/trunk/configure.in
Log:
add missing config macro
Modified: cgm/trunk/configure.in
===================================================================
--- cgm/trunk/configure.in 2008-12-04 16:11:18 UTC (rev 2463)
+++ cgm/trunk/configure.in 2008-12-04 16:13:50 UTC (rev 2464)
@@ -2,6 +2,7 @@
# Standard Stuff
################################################################################
AC_INIT(CGMA, 10.2.2)
+AC_CONFIG_MACRO_DIR([m4])
AC_CANONICAL_SYSTEM
AM_INIT_AUTOMAKE(CGMA,10.2.2)
AC_DISABLE_SHARED
1
0
/bin/sh ./config.status --recheck
running CONFIG_SHELL=/bin/sh /bin/sh ../trunk/configure --enable-debug --enable-release --with-occ=/opt/OpenCascade6.3 --no-create --no-recursion
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking for cc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking dependency style of cc... gcc3
checking how to run the C preprocessor... cc -E
checking for CC... no
checking for aCC... no
checking for cxx... no
checking for xlC_r... no
checking for xlC... no
checking for c++... c++
checking whether we are using the GNU C++ compiler... yes
checking whether c++ accepts -g... yes
checking dependency style of c++... gcc3
checking how to run the C++ preprocessor... c++ -E
checking for gfortran... gfortran
checking whether we are using the GNU Fortran compiler... yes
checking whether gfortran accepts -g... yes
checking for gfortran... gfortran
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether gfortran accepts -g... yes
checking for known C compilers... GNU
checking for known compiler/OS combinations... GNU:x86_64
checking for known c++ compilers... GNU
checking for known compiler/OS combinations... GNU:x86_64
checking whether we are using the GNU Fortran compiler... (cached) yes
checking whether gfortran accepts -g... (cached) yes
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking how to run the C++ preprocessor... c++ -E
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from cc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if cc supports -fno-rtti -fno-exceptions... no
checking for cc option to produce PIC... -fPIC
checking if cc PIC flag -fPIC works... yes
checking if cc static flag -static works... yes
checking if cc supports -c -o file.o... yes
checking whether the cc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by c++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the c++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for c++ option to produce PIC... -fPIC
checking if c++ PIC flag -fPIC works... yes
checking if c++ static flag -static works... yes
checking if c++ supports -c -o file.o... yes
checking whether the c++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
(cached) (cached) checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for gfortran option to produce PIC... -fPIC
checking if gfortran PIC flag -fPIC works... yes
checking if gfortran static flag -static works... yes
checking if gfortran supports -c -o file.o... yes
checking whether the gfortran linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
(cached) (cached) checking how to hardcode library paths into programs... immediate
checking whether byte ordering is bigendian... no
checking how to get verbose linking output from gfortran... -v
checking for Fortran libraries of gfortran... -L/usr/lib/gcc/x86_64-linux-gnu/4.3.2 -L/usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../.. -lgfortranbegin -lgfortran -lm
checking for dummy main to link with Fortran libraries... none
checking for Fortran name-mangling scheme... lower case, underscore, no extra underscore
checking for C++-standard library in std:: namespace... yes
checking for C++-standard I/O in std:: namespace... yes
checking if C++ template definitions should be included... yes
checking for 'include' subdir of /opt/OpenCascade6.3... inc
checking for 'lib' subdir of /opt/OpenCascade6.3... lib
checking if platform is 64-bit (-D_OCC64)... yes
checking iostream usability... yes
checking iostream presence... yes
checking for iostream... yes
checking iostream.h usability... no
checking iostream.h presence... no
checking for iostream.h... no
checking iomanip usability... yes
checking iomanip presence... yes
checking for iomanip... yes
checking iomanip.h usability... no
checking iomanip.h presence... no
checking for iomanip.h... no
checking fstream usability... yes
checking fstream presence... yes
checking for fstream... yes
checking fstream.h usability... no
checking fstream.h presence... no
checking for fstream.h... no
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking Standard_Version.hxx usability... yes
checking Standard_Version.hxx presence... yes
checking for Standard_Version.hxx... yes
checking for create_mailbox in -lTKernel... no
checking for create_mailbox in -lTKernel... yes
CXXFLAGS = -Wall -pipe -pedantic -g
configure: creating ./config.status
/bin/sh ./config.status
config.status: creating Makefile
config.status: creating util/Makefile
config.status: creating geom/Makefile
config.status: creating geom/ACIS/Makefile
config.status: creating geom/Cholla/Makefile
config.status: creating geom/facet/Makefile
config.status: creating geom/facetbool/Makefile
config.status: creating geom/OCC/Makefile
config.status: creating geom/parallel/Makefile
config.status: creating geom/virtual/Makefile
config.status: creating init/Makefile
config.status: creating cgm.make
config.status: creating itaps/Makefile
config.status: creating itaps/iGeom-Defs.inc
config.status: creating itaps/SIDL/Makefile
config.status: creating test/Makefile
config.status: creating cgm_apps/Makefile
config.status: creating cgm_apps/examples/Makefile
config.status: creating cgm_apps/examples/driverc++/Makefile
config.status: creating cgm_apps/examples/facetdriver/Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: creating itaps/iBase_FCDefs.h
config.status: itaps/iBase_FCDefs.h is unchanged
config.status: executing depfiles commands
make all-recursive
make[1]: Entering directory `/home/jason/cgm/test/64-occ'
Making all in util
make[2]: Entering directory `/home/jason/cgm/test/64-occ/util'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/util'
Making all in geom
make[2]: Entering directory `/home/jason/cgm/test/64-occ/geom'
Making all in .
make[3]: Entering directory `/home/jason/cgm/test/64-occ/geom'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/jason/cgm/test/64-occ/geom'
Making all in Cholla
make[3]: Entering directory `/home/jason/cgm/test/64-occ/geom/Cholla'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/jason/cgm/test/64-occ/geom/Cholla'
Making all in facetbool
make[3]: Entering directory `/home/jason/cgm/test/64-occ/geom/facetbool'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/jason/cgm/test/64-occ/geom/facetbool'
Making all in facet
make[3]: Entering directory `/home/jason/cgm/test/64-occ/geom/facet'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/jason/cgm/test/64-occ/geom/facet'
Making all in virtual
make[3]: Entering directory `/home/jason/cgm/test/64-occ/geom/virtual'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/jason/cgm/test/64-occ/geom/virtual'
Making all in OCC
make[3]: Entering directory `/home/jason/cgm/test/64-occ/geom/OCC'
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCAttribSet.lo -MD -MP -MF .deps/OCCAttribSet.Tpo -c -o OCCAttribSet.lo ../../../trunk/geom/OCC/OCCAttribSet.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCAttribSet.lo -MD -MP -MF .deps/OCCAttribSet.Tpo -c ../../../trunk/geom/OCC/OCCAttribSet.cpp -o OCCAttribSet.o
../../../trunk/geom/OCC/OCCAttribSet.cpp: In static member function ‘static CubitStatus OCCAttribSet::get_attributes(TopoDS_Shape&, DLIList<CubitSimpleAttrib*>&)’:
../../../trunk/geom/OCC/OCCAttribSet.cpp:400: warning: unused variable ‘string’
mv -f .deps/OCCAttribSet.Tpo .deps/OCCAttribSet.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCBody.lo -MD -MP -MF .deps/OCCBody.Tpo -c -o OCCBody.lo ../../../trunk/geom/OCC/OCCBody.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCBody.lo -MD -MP -MF .deps/OCCBody.Tpo -c ../../../trunk/geom/OCC/OCCBody.cpp -o OCCBody.o
mv -f .deps/OCCBody.Tpo .deps/OCCBody.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCCoEdge.lo -MD -MP -MF .deps/OCCCoEdge.Tpo -c -o OCCCoEdge.lo ../../../trunk/geom/OCC/OCCCoEdge.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCCoEdge.lo -MD -MP -MF .deps/OCCCoEdge.Tpo -c ../../../trunk/geom/OCC/OCCCoEdge.cpp -o OCCCoEdge.o
mv -f .deps/OCCCoEdge.Tpo .deps/OCCCoEdge.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCCoFace.lo -MD -MP -MF .deps/OCCCoFace.Tpo -c -o OCCCoFace.lo ../../../trunk/geom/OCC/OCCCoFace.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCCoFace.lo -MD -MP -MF .deps/OCCCoFace.Tpo -c ../../../trunk/geom/OCC/OCCCoFace.cpp -o OCCCoFace.o
mv -f .deps/OCCCoFace.Tpo .deps/OCCCoFace.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCCurve.lo -MD -MP -MF .deps/OCCCurve.Tpo -c -o OCCCurve.lo ../../../trunk/geom/OCC/OCCCurve.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCCurve.lo -MD -MP -MF .deps/OCCCurve.Tpo -c ../../../trunk/geom/OCC/OCCCurve.cpp -o OCCCurve.o
mv -f .deps/OCCCurve.Tpo .deps/OCCCurve.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCLoop.lo -MD -MP -MF .deps/OCCLoop.Tpo -c -o OCCLoop.lo ../../../trunk/geom/OCC/OCCLoop.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCLoop.lo -MD -MP -MF .deps/OCCLoop.Tpo -c ../../../trunk/geom/OCC/OCCLoop.cpp -o OCCLoop.o
mv -f .deps/OCCLoop.Tpo .deps/OCCLoop.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCLump.lo -MD -MP -MF .deps/OCCLump.Tpo -c -o OCCLump.lo ../../../trunk/geom/OCC/OCCLump.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCLump.lo -MD -MP -MF .deps/OCCLump.Tpo -c ../../../trunk/geom/OCC/OCCLump.cpp -o OCCLump.o
mv -f .deps/OCCLump.Tpo .deps/OCCLump.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCModifyEngine.lo -MD -MP -MF .deps/OCCModifyEngine.Tpo -c -o OCCModifyEngine.lo ../../../trunk/geom/OCC/OCCModifyEngine.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCModifyEngine.lo -MD -MP -MF .deps/OCCModifyEngine.Tpo -c ../../../trunk/geom/OCC/OCCModifyEngine.cpp -o OCCModifyEngine.o
mv -f .deps/OCCModifyEngine.Tpo .deps/OCCModifyEngine.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCPoint.lo -MD -MP -MF .deps/OCCPoint.Tpo -c -o OCCPoint.lo ../../../trunk/geom/OCC/OCCPoint.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCPoint.lo -MD -MP -MF .deps/OCCPoint.Tpo -c ../../../trunk/geom/OCC/OCCPoint.cpp -o OCCPoint.o
../../../trunk/geom/OCC/OCCPoint.cpp: In member function ‘void OCCPoint::update_OCC_entity(BRepBuilderAPI_Transform*, BRepAlgoAPI_BooleanOperation*)’:
../../../trunk/geom/OCC/OCCPoint.cpp:285: warning: statement has no effect
mv -f .deps/OCCPoint.Tpo .deps/OCCPoint.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCQueryEngine.lo -MD -MP -MF .deps/OCCQueryEngine.Tpo -c -o OCCQueryEngine.lo ../../../trunk/geom/OCC/OCCQueryEngine.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCQueryEngine.lo -MD -MP -MF .deps/OCCQueryEngine.Tpo -c ../../../trunk/geom/OCC/OCCQueryEngine.cpp -o OCCQueryEngine.o
mv -f .deps/OCCQueryEngine.Tpo .deps/OCCQueryEngine.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCShell.lo -MD -MP -MF .deps/OCCShell.Tpo -c -o OCCShell.lo ../../../trunk/geom/OCC/OCCShell.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCShell.lo -MD -MP -MF .deps/OCCShell.Tpo -c ../../../trunk/geom/OCC/OCCShell.cpp -o OCCShell.o
mv -f .deps/OCCShell.Tpo .deps/OCCShell.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCSurface.lo -MD -MP -MF .deps/OCCSurface.Tpo -c -o OCCSurface.lo ../../../trunk/geom/OCC/OCCSurface.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCSurface.lo -MD -MP -MF .deps/OCCSurface.Tpo -c ../../../trunk/geom/OCC/OCCSurface.cpp -o OCCSurface.o
mv -f .deps/OCCSurface.Tpo .deps/OCCSurface.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCDrawTool.lo -MD -MP -MF .deps/OCCDrawTool.Tpo -c -o OCCDrawTool.lo ../../../trunk/geom/OCC/OCCDrawTool.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT OCCDrawTool.lo -MD -MP -MF .deps/OCCDrawTool.Tpo -c ../../../trunk/geom/OCC/OCCDrawTool.cpp -o OCCDrawTool.o
mv -f .deps/OCCDrawTool.Tpo .deps/OCCDrawTool.Plo
/bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -o libcubit_OCC.la OCCShapeAttributeSet.lo OCCAttribSet.lo OCCBody.lo OCCCoEdge.lo OCCCoFace.lo OCCCurve.lo OCCLoop.lo OCCLump.lo OCCModifyEngine.lo OCCParamTool.lo OCCPoint.lo OCCQueryEngine.lo OCCShell.lo OCCSurface.lo OCCDrawTool.lo -L/opt/OpenCascade6.3/lib -lTKMath -lTKXSBase -lTKernel -lTKShHealing -lTKBRep -lTKG3d -lTKBO -lTKFeat -lTKFillet -lTKG2d -lTKOffset -lTKBool -lTKGeomAlgo -lTKGeomBase -lTKPrim -lTKTopAlgo -lTKHLR -lTKIGES -lTKMesh -lTKPrim -lTKSTEP209 -lTKSTEPAttr -lTKSTEPBase -lTKSTEP -lTKSTL -lTKTopAlgo -lTKXSBase -lTKLCAF -ldl -lm
rm -fr .libs/libcubit_OCC.a .libs/libcubit_OCC.la
ar cru .libs/libcubit_OCC.a OCCShapeAttributeSet.o OCCAttribSet.o OCCBody.o OCCCoEdge.o OCCCoFace.o OCCCurve.o OCCLoop.o OCCLump.o OCCModifyEngine.o OCCParamTool.o OCCPoint.o OCCQueryEngine.o OCCShell.o OCCSurface.o OCCDrawTool.o
ranlib .libs/libcubit_OCC.a
creating libcubit_OCC.la
(cd .libs && rm -f libcubit_OCC.la && ln -s ../libcubit_OCC.la libcubit_OCC.la)
make[3]: Leaving directory `/home/jason/cgm/test/64-occ/geom/OCC'
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/geom'
Making all in init
make[2]: Entering directory `/home/jason/cgm/test/64-occ/init'
/bin/sh ../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/init -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/geom/ACIS -I../../trunk/geom/OCC -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/cholla -I../../trunk/init -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT InitCGMA.lo -MD -MP -MF .deps/InitCGMA.Tpo -c -o InitCGMA.lo ../../trunk/init/InitCGMA.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/init -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/geom/ACIS -I../../trunk/geom/OCC -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/cholla -I../../trunk/init -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -MT InitCGMA.lo -MD -MP -MF .deps/InitCGMA.Tpo -c ../../trunk/init/InitCGMA.cpp -o InitCGMA.o
mv -f .deps/InitCGMA.Tpo .deps/InitCGMA.Plo
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -o libcgma_init.la InitCGMA.lo -lm
rm -fr .libs/libcgma_init.a .libs/libcgma_init.la
ar cru .libs/libcgma_init.a InitCGMA.o
ranlib .libs/libcgma_init.a
creating libcgma_init.la
(cd .libs && rm -f libcgma_init.la && ln -s ../libcgma_init.la libcgma_init.la)
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/init'
Making all in .
make[2]: Entering directory `/home/jason/cgm/test/64-occ'
/bin/sh ./libtool --tag=CC --mode=link cc -Wall -pipe -pedantic -g -o libcgm.la -rpath /usr/local/lib init/libcgma_init.la geom/OCC/libcubit_OCC.la geom/virtual/libcubit_virtual.la geom/facet/libcubit_facet.la geom/Cholla/libcholla.la geom/facetbool/libcubit_facetbool.la geom/libcubit_geom.la util/libcubit_util.la -lTKMath -lTKXSBase -lTKernel -lTKShHealing -lTKBRep -lTKG3d -lTKBO -lTKFeat -lTKFillet -lTKG2d -lTKOffset -lTKBool -lTKGeomAlgo -lTKGeomBase -lTKPrim -lTKTopAlgo -lTKHLR -lTKIGES -lTKMesh -lTKPrim -lTKSTEP209 -lTKSTEPAttr -lTKSTEPBase -lTKSTEP -lTKSTL -lTKTopAlgo -lTKXSBase -lTKLCAF -ldl no -lm
rm -fr .libs/libcgm.a .libs/libcgm.la .libs/libcgm.lai
rm -fr .libs/libcgm.lax
mkdir .libs/libcgm.lax
rm -fr .libs/libcgm.lax/libcgma_init.a
mkdir .libs/libcgm.lax/libcgma_init.a
(cd .libs/libcgm.lax/libcgma_init.a && ar x /home/jason/cgm/test/64-occ/init/.libs/libcgma_init.a)
rm -fr .libs/libcgm.lax/libcubit_OCC.a
mkdir .libs/libcgm.lax/libcubit_OCC.a
(cd .libs/libcgm.lax/libcubit_OCC.a && ar x /home/jason/cgm/test/64-occ/geom/OCC/.libs/libcubit_OCC.a)
rm -fr .libs/libcgm.lax/libcubit_virtual.a
mkdir .libs/libcgm.lax/libcubit_virtual.a
(cd .libs/libcgm.lax/libcubit_virtual.a && ar x /home/jason/cgm/test/64-occ/geom/virtual/.libs/libcubit_virtual.a)
rm -fr .libs/libcgm.lax/libcubit_facet.a
mkdir .libs/libcgm.lax/libcubit_facet.a
(cd .libs/libcgm.lax/libcubit_facet.a && ar x /home/jason/cgm/test/64-occ/geom/facet/.libs/libcubit_facet.a)
rm -fr .libs/libcgm.lax/libcholla.a
mkdir .libs/libcgm.lax/libcholla.a
(cd .libs/libcgm.lax/libcholla.a && ar x /home/jason/cgm/test/64-occ/geom/Cholla/.libs/libcholla.a)
rm -fr .libs/libcgm.lax/libcubit_facetbool.a
mkdir .libs/libcgm.lax/libcubit_facetbool.a
(cd .libs/libcgm.lax/libcubit_facetbool.a && ar x /home/jason/cgm/test/64-occ/geom/facetbool/.libs/libcubit_facetbool.a)
rm -fr .libs/libcgm.lax/libcubit_geom.a
mkdir .libs/libcgm.lax/libcubit_geom.a
(cd .libs/libcgm.lax/libcubit_geom.a && ar x /home/jason/cgm/test/64-occ/geom/.libs/libcubit_geom.a)
rm -fr .libs/libcgm.lax/libcubit_util.a
mkdir .libs/libcgm.lax/libcubit_util.a
(cd .libs/libcgm.lax/libcubit_util.a && ar x /home/jason/cgm/test/64-occ/util/.libs/libcubit_util.a)
ar cru .libs/libcgm.a .libs/libcgm.lax/libcgma_init.a/InitCGMA.o .libs/libcgm.lax/libcubit_OCC.a/OCCBody.o .libs/libcgm.lax/libcubit_OCC.a/OCCLump.o .libs/libcgm.lax/libcubit_OCC.a/OCCCoFace.o .libs/libcgm.lax/libcubit_OCC.a/OCCCurve.o .libs/libcgm.lax/libcubit_OCC.a/OCCQueryEngine.o .libs/libcgm.lax/libcubit_OCC.a/OCCDrawTool.o .libs/libcgm.lax/libcubit_OCC.a/OCCAttribSet.o .libs/libcgm.lax/libcubit_OCC.a/OCCShell.o .libs/libcgm.lax/libcubit_OCC.a/OCCModifyEngine.o .libs/libcgm.lax/libcubit_OCC.a/OCCCoEdge.o .libs/libcgm.lax/libcubit_OCC.a/OCCParamTool.o .libs/libcgm.lax/libcubit_OCC.a/OCCPoint.o .libs/libcgm.lax/libcubit_OCC.a/OCCShapeAttributeSet.o .libs/libcgm.lax/libcubit_OCC.a/OCCSurface.o .libs/libcgm.lax/libcubit_OCC.a/OCCLoop.o .libs/libcgm.lax/libcubit_virtual.a/ImprintBoundaryTool.o .libs/libcgm.lax/libcubit_virtual.a/SegmentedCurve.o .libs/libcgm.lax/libcubit_virtual.a/CompositeLump.o .libs/libcgm.lax/libcubit_virtual.a/VirtualImprintTool.o .libs/libcgm.lax/l!
ibcubit_virtual.a/CompositeCoEdge.o .libs/libcgm.lax/libcubit_virtual.a/PartitionPoint.o .libs/libcgm.lax/libcubit_virtual.a/CompositeGeom.o .libs/libcgm.lax/libcubit_virtual.a/PartitionLumpImprint.o .libs/libcgm.lax/libcubit_virtual.a/PartitionCurve.o .libs/libcgm.lax/libcubit_virtual.a/PartitionLoop.o .libs/libcgm.lax/libcubit_virtual.a/VirtualQueryEngine.o .libs/libcgm.lax/libcubit_virtual.a/CAPartitionVG.o .libs/libcgm.lax/libcubit_virtual.a/PartSurfFacetTool.o .libs/libcgm.lax/libcubit_virtual.a/TDVGFacetSplit.o .libs/libcgm.lax/libcubit_virtual.a/PartitionCoEdge.o .libs/libcgm.lax/libcubit_virtual.a/PartitionLump.o .libs/libcgm.lax/libcubit_virtual.a/PartitionBody.o .libs/libcgm.lax/libcubit_virtual.a/CompositeTool.o .libs/libcgm.lax/libcubit_virtual.a/FaceterPointData.o .libs/libcgm.lax/libcubit_virtual.a/FaceterFacetData.o .libs/libcgm.lax/libcubit_virtual.a/Faceter.o .libs/libcgm.lax/libcubit_virtual.a/CollapseAngleTool.o .libs/libcgm.lax/libcubit_virtual.a/HiddenE!
ntitySet.o .libs/libcgm.lax/libcubit_virtual.a/CAVirtualVG.o .libs/lib
cgm.lax/libcubit_virtual.a/SubCurve.o .libs/libcgm.lax/libcubit_virtual.a/PST_Data.o .libs/libcgm.lax/libcubit_virtual.a/PartitionTool.o .libs/libcgm.lax/libcubit_virtual.a/ImprintPointData.o .libs/libcgm.lax/libcubit_virtual.a/SubSurface.o .libs/libcgm.lax/libcubit_virtual.a/CACompositeVG.o .libs/libcgm.lax/libcubit_virtual.a/SubEntitySet.o .libs/libcgm.lax/libcubit_virtual.a/FacetProjectTool.o .libs/libcgm.lax/libcubit_virtual.a/CompositeEngine.o .libs/libcgm.lax/libcubit_virtual.a/PartPTCurve.o .libs/libcgm.lax/libcubit_virtual.a/TDVGFacetOwner.o .libs/libcgm.lax/libcubit_virtual.a/ImprintLineSegment.o .libs/libcgm.lax/libcubit_virtual.a/AllocMemManagersVirtual.o .libs/libcgm.lax/libcubit_virtual.a/CompositeAttrib.o .libs/libcgm.lax/libcubit_virtual.a/CompSurfFacets.o .libs/libcgm.lax/libcubit_virtual.a/CompositeBody.o .libs/libcgm.lax/libcubit_virtual.a/CompositeCoSurf.o .libs/libcgm.lax/libcubit_virtual.a/PartitionCoSurf.o .libs/libcgm.lax/libcubit_virtual.a/PartitionSh!
ell.o .libs/libcgm.lax/libcubit_virtual.a/CompositeSurface.o .libs/libcgm.lax/libcubit_virtual.a/CompositePoint.o .libs/libcgm.lax/libcubit_virtual.a/PartitionSurface.o .libs/libcgm.lax/libcubit_virtual.a/CompositeCurve.o .libs/libcgm.lax/libcubit_virtual.a/CompositeShell.o .libs/libcgm.lax/libcubit_virtual.a/PartitionEntity.o .libs/libcgm.lax/libcubit_virtual.a/CompositeLoop.o .libs/libcgm.lax/libcubit_virtual.a/PartitionEngine.o .libs/libcgm.lax/libcubit_facet.a/FacetAttribSet.o .libs/libcgm.lax/libcubit_facet.a/GridSearchTree.o .libs/libcgm.lax/libcubit_facet.a/FacetLoop.o .libs/libcgm.lax/libcubit_facet.a/FacetLump.o .libs/libcgm.lax/libcubit_facet.a/FacetParamTool.o .libs/libcgm.lax/libcubit_facet.a/FacetCoEdge.o .libs/libcgm.lax/libcubit_facet.a/FacetSurface.o .libs/libcgm.lax/libcubit_facet.a/FacetCurve.o .libs/libcgm.lax/libcubit_facet.a/FacetShell.o .libs/libcgm.lax/libcubit_facet.a/FacetBody.o .libs/libcgm.lax/libcubit_facet.a/FacetboolInterface.o .libs/libcgm.la!
x/libcubit_facet.a/FacetModifyEngine.o .libs/libcgm.lax/libcubit_facet
.a/FacetPoint.o .libs/libcgm.lax/libcubit_facet.a/FacetAttrib.o .libs/libcgm.lax/libcubit_facet.a/FacetQueryEngine.o .libs/libcgm.lax/libcholla.a/TDChordal.o .libs/libcgm.lax/libcholla.a/CubitPoint.o .libs/libcgm.lax/libcholla.a/ChollaPoint.o .libs/libcgm.lax/libcholla.a/FacetEvalTool.o .libs/libcgm.lax/libcholla.a/CubitQuadFacet.o .libs/libcgm.lax/libcholla.a/PointGridSearch.o .libs/libcgm.lax/libcholla.a/FacetEntity.o .libs/libcgm.lax/libcholla.a/Cholla.o .libs/libcgm.lax/libcholla.a/GeoNode.o .libs/libcgm.lax/libcholla.a/TDFacetBoundaryEdge.o .libs/libcgm.lax/libcholla.a/ChordalAxis.o .libs/libcgm.lax/libcholla.a/PointLoopFacetor.o .libs/libcgm.lax/libcholla.a/ChollaEngine.o .libs/libcgm.lax/libcholla.a/debug.o .libs/libcgm.lax/libcholla.a/ChollaSkinTool.o .libs/libcgm.lax/libcholla.a/ChollaEntity.o .libs/libcgm.lax/libcholla.a/LoopParamTool.o .libs/libcgm.lax/libcholla.a/CubitFacetData.o .libs/libcgm.lax/libcholla.a/GeoTet.o .libs/libcgm.lax/libcholla.a/AllocMemManagers!
Cholla.o .libs/libcgm.lax/libcholla.a/CubitFacetEdge.o .libs/libcgm.lax/libcholla.a/CubitFacet.o .libs/libcgm.lax/libcholla.a/CurveFacetEvalTool.o .libs/libcgm.lax/libcholla.a/FacetDataUtil.o .libs/libcgm.lax/libcholla.a/CubitFacetEdgeData.o .libs/libcgm.lax/libcholla.a/TDGeomFacet.o .libs/libcgm.lax/libcholla.a/CubitPointData.o .libs/libcgm.lax/libcholla.a/ChollaSurface.o .libs/libcgm.lax/libcholla.a/CubitQuadFacetData.o .libs/libcgm.lax/libcholla.a/TDFacetboolData.o .libs/libcgm.lax/libcholla.a/ChollaCurve.o .libs/libcgm.lax/libcholla.a/TDFacetBoundaryPoint.o .libs/libcgm.lax/libcubit_facetbool.a/FBRetriangulate.o .libs/libcgm.lax/libcubit_facetbool.a/FBDataUtil.o .libs/libcgm.lax/libcubit_facetbool.a/FBIntersect.o .libs/libcgm.lax/libcubit_facetbool.a/KdTree.o .libs/libcgm.lax/libcubit_facetbool.a/FBImprint.o .libs/libcgm.lax/libcubit_facetbool.a/FBTiler.o .libs/libcgm.lax/libcubit_facetbool.a/IntegerHash.o .libs/libcgm.lax/libcubit_facetbool.a/FBClassify.o .libs/libcgm!
.lax/libcubit_facetbool.a/FBPolyhedron.o .libs/libcgm.lax/libcubit_ge
om.a/CoVolume.o .libs/libcgm.lax/libcubit_geom.a/RefGroup.o .libs/libcgm.lax/libcubit_geom.a/GeometryFeatureEngine.o .libs/libcgm.lax/libcubit_geom.a/AllocMemManagersGeom.o .libs/libcgm.lax/libcubit_geom.a/OffsetSplitTool.o .libs/libcgm.lax/libcubit_geom.a/RefVertex.o .libs/libcgm.lax/libcubit_geom.a/CubitPolygon.o .libs/libcgm.lax/libcubit_geom.a/CAEntityColor.o .libs/libcgm.lax/libcubit_geom.a/TDSplitSurface.o .libs/libcgm.lax/libcubit_geom.a/GeomDataObserver.o .libs/libcgm.lax/libcubit_geom.a/SurfaceSM.o .libs/libcgm.lax/libcubit_geom.a/BridgeManager.o .libs/libcgm.lax/libcubit_geom.a/CoFace.o .libs/libcgm.lax/libcubit_geom.a/CAEntityName.o .libs/libcgm.lax/libcubit_geom.a/CAActuateSet.o .libs/libcgm.lax/libcubit_geom.a/GeometryHealerEngine.o .libs/libcgm.lax/libcubit_geom.a/GeomMeasureTool.o .libs/libcgm.lax/libcubit_geom.a/CAMergePartner.o .libs/libcgm.lax/libcubit_geom.a/GeometryUtil.o .libs/libcgm.lax/libcubit_geom.a/GeometryQueryEngine.o .libs/libcgm.lax/libcubit_geo!
m.a/CGMEngineDynamicLoader.o .libs/libcgm.lax/libcubit_geom.a/PointSM.o .libs/libcgm.lax/libcubit_geom.a/CubitAttribUser.o .libs/libcgm.lax/libcubit_geom.a/RefFace.o .libs/libcgm.lax/libcubit_geom.a/CAMergeStatus.o .libs/libcgm.lax/libcubit_geom.a/TDSurfaceOverlap.o .libs/libcgm.lax/libcubit_geom.a/Lump.o .libs/libcgm.lax/libcubit_geom.a/MedialTool2D.o .libs/libcgm.lax/libcubit_geom.a/RefEntityName.o .libs/libcgm.lax/libcubit_geom.a/GSaveOpen.o .libs/libcgm.lax/libcubit_geom.a/CAUniqueId.o .libs/libcgm.lax/libcubit_geom.a/TopologyBridge.o .libs/libcgm.lax/libcubit_geom.a/CubitAttribManager.o .libs/libcgm.lax/libcubit_geom.a/TDUniqueId.o .libs/libcgm.lax/libcubit_geom.a/CurveOverlapFacet.o .libs/libcgm.lax/libcubit_geom.a/GeometryFeatureTool.o .libs/libcgm.lax/libcubit_geom.a/CADeferredAttrib.o .libs/libcgm.lax/libcubit_geom.a/CoVertex.o .libs/libcgm.lax/libcubit_geom.a/GeometryQueryTool.o .libs/libcgm.lax/libcubit_geom.a/RefEntity.o .libs/libcgm.lax/libcubit_geom.a/SphereEv!
aluator.o .libs/libcgm.lax/libcubit_geom.a/Shell.o .libs/libcgm.lax/li
bcubit_geom.a/LumpSM.o .libs/libcgm.lax/libcubit_geom.a/BoundingBoxTool.o .libs/libcgm.lax/libcubit_geom.a/SurfaceOverlapTool.o .libs/libcgm.lax/libcubit_geom.a/CAEntityId.o .libs/libcgm.lax/libcubit_geom.a/Curve.o .libs/libcgm.lax/libcubit_geom.a/Point.o .libs/libcgm.lax/libcubit_geom.a/SplitSurfaceTool.o .libs/libcgm.lax/libcubit_geom.a/RefVolume.o .libs/libcgm.lax/libcubit_geom.a/Loop.o .libs/libcgm.lax/libcubit_geom.a/RefEdge.o .libs/libcgm.lax/libcubit_geom.a/TDCAGE.o .libs/libcgm.lax/libcubit_geom.a/MedialTool3D.o .libs/libcgm.lax/libcubit_geom.a/TDSourceFeature.o .libs/libcgm.lax/libcubit_geom.a/CubitSimpleAttrib.o .libs/libcgm.lax/libcubit_geom.a/CAGroup.o .libs/libcgm.lax/libcubit_geom.a/MergeToolAssistant.o .libs/libcgm.lax/libcubit_geom.a/GeometryModifyEngine.o .libs/libcgm.lax/libcubit_geom.a/GeometryEntity.o .libs/libcgm.lax/libcubit_geom.a/ModelQueryEngine.o .libs/libcgm.lax/libcubit_geom.a/AnalyticGeometryTool.o .libs/libcgm.lax/libcubit_geom.a/GfxPreview.o .l!
ibs/libcgm.lax/libcubit_geom.a/DAG.o .libs/libcgm.lax/libcubit_geom.a/RefCollection.o .libs/libcgm.lax/libcubit_geom.a/RefEntityFactory.o .libs/libcgm.lax/libcubit_geom.a/CASourceFeature.o .libs/libcgm.lax/libcubit_geom.a/SurfParamTool.o .libs/libcgm.lax/libcubit_geom.a/GeometryModifyTool.o .libs/libcgm.lax/libcubit_geom.a/LoopSM.o .libs/libcgm.lax/libcubit_geom.a/ModelEntity.o .libs/libcgm.lax/libcubit_geom.a/Surface.o .libs/libcgm.lax/libcubit_geom.a/SenseEntity.o .libs/libcgm.lax/libcubit_geom.a/CylinderEvaluator.o .libs/libcgm.lax/libcubit_geom.a/GroupingEntity.o .libs/libcgm.lax/libcubit_geom.a/BodySM.o .libs/libcgm.lax/libcubit_geom.a/CurveSM.o .libs/libcgm.lax/libcubit_geom.a/CoEdge.o .libs/libcgm.lax/libcubit_geom.a/MergeTool.o .libs/libcgm.lax/libcubit_geom.a/CGMApp.o .libs/libcgm.lax/libcubit_geom.a/CubitAttrib.o .libs/libcgm.lax/libcubit_geom.a/CoEdgeSM.o .libs/libcgm.lax/libcubit_geom.a/TopologyEntity.o .libs/libcgm.lax/libcubit_geom.a/MidPlaneTool.o .libs/libcg!
m.lax/libcubit_geom.a/OldUnmergeCode.o .libs/libcgm.lax/libcubit_geom.
a/Chain.o .libs/libcgm.lax/libcubit_geom.a/SurfaceOverlapFacet.o .libs/libcgm.lax/libcubit_geom.a/GeometryHealerTool.o .libs/libcgm.lax/libcubit_geom.a/Body.o .libs/libcgm.lax/libcubit_geom.a/DagDrawingTool.o .libs/libcgm.lax/libcubit_geom.a/BasicTopologyEntity.o .libs/libcgm.lax/libcubit_geom.a/CollectionEntity.o .libs/libcgm.lax/libcubit_geom.a/ShellSM.o .libs/libcgm.lax/libcubit_util.a/GMem.o .libs/libcgm.lax/libcubit_util.a/CubitCoordinateSystem.o .libs/libcgm.lax/libcubit_util.a/GfxDebug.o .libs/libcgm.lax/libcubit_util.a/CubitString.o .libs/libcgm.lax/libcubit_util.a/StubProgressTool.o .libs/libcgm.lax/libcubit_util.a/TextProgressTool.o .libs/libcgm.lax/libcubit_util.a/TDUPtr.o .libs/libcgm.lax/libcubit_util.a/CubitStack.o .libs/libcgm.lax/libcubit_util.a/CubitMessage.o .libs/libcgm.lax/libcubit_util.a/CubitFileIOWrapper.o .libs/libcgm.lax/libcubit_util.a/CubitFileUtil.o .libs/libcgm.lax/libcubit_util.a/CubitEntity.o .libs/libcgm.lax/libcubit_util.a/CubitVector.o .lib!
s/libcgm.lax/libcubit_util.a/IntersectionTool.o .libs/libcgm.lax/libcubit_util.a/MemoryBlock.o .libs/libcgm.lax/libcubit_util.a/Queue.o .libs/libcgm.lax/libcubit_util.a/SettingHolder.o .libs/libcgm.lax/libcubit_util.a/Cubit2DPoint.o .libs/libcgm.lax/libcubit_util.a/CubitCollection.o .libs/libcgm.lax/libcubit_util.a/PlanarParamTool.o .libs/libcgm.lax/libcubit_util.a/ArrayBasedContainer.o .libs/libcgm.lax/libcubit_util.a/GetLongOpt.o .libs/libcgm.lax/libcubit_util.a/CubitFileFEModel.o .libs/libcgm.lax/libcubit_util.a/AllocMemManagersList.o .libs/libcgm.lax/libcubit_util.a/CubitPlane.o .libs/libcgm.lax/libcubit_util.a/CubitDynamicLoader.o .libs/libcgm.lax/libcubit_util.a/TtyProgressTool.o .libs/libcgm.lax/libcubit_util.a/CubitObservable.o .libs/libcgm.lax/libcubit_util.a/DIntArray.o .libs/libcgm.lax/libcubit_util.a/DynamicArray.o .libs/libcgm.lax/libcubit_util.a/ToolData.o .libs/libcgm.lax/libcubit_util.a/ToolDataUser.o .libs/libcgm.lax/libcubit_util.a/RandomMersenne.o .libs/l!
ibcgm.lax/libcubit_util.a/SDLList.o .libs/libcgm.lax/libcubit_util.a/C
ubitBox.o .libs/libcgm.lax/libcubit_util.a/CubitTransformMatrix.o .libs/libcgm.lax/libcubit_util.a/ParamCubitPlane.o .libs/libcgm.lax/libcubit_util.a/CubitFileMetaData.o .libs/libcgm.lax/libcubit_util.a/DLList.o .libs/libcgm.lax/libcubit_util.a/CubitFile.o .libs/libcgm.lax/libcubit_util.a/CubitMatrix.o .libs/libcgm.lax/libcubit_util.a/CubitObserver.o .libs/libcgm.lax/libcubit_util.a/CubitContainer.o .libs/libcgm.lax/libcubit_util.a/Tree.o .libs/libcgm.lax/libcubit_util.a/AppUtil.o .libs/libcgm.lax/libcubit_util.a/CpuTimer.o .libs/libcgm.lax/libcubit_util.a/MemoryManager.o .libs/libcgm.lax/libcubit_util.a/CubitUtil.o .libs/libcgm.lax/libcubit_util.a/SettingHandler.o
ranlib .libs/libcgm.a
rm -fr .libs/libcgm.lax
creating libcgm.la
(cd .libs && rm -f libcgm.la && ln -s ../libcgm.la libcgm.la)
make[2]: Leaving directory `/home/jason/cgm/test/64-occ'
Making all in itaps
make[2]: Entering directory `/home/jason/cgm/test/64-occ/itaps'
make all-recursive
make[3]: Entering directory `/home/jason/cgm/test/64-occ/itaps'
Making all in .
make[4]: Entering directory `/home/jason/cgm/test/64-occ/itaps'
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -o libiGeom.la -rpath /usr/local/lib CATag.lo iGeom_CGMA.lo iGeomError.lo ../libcgm.la -lm
rm -fr .libs/libiGeom.a .libs/libiGeom.la .libs/libiGeom.lai
ar cru .libs/libiGeom.a CATag.o iGeom_CGMA.o iGeomError.o
ranlib .libs/libiGeom.a
creating libiGeom.la
(cd .libs && rm -f libiGeom.la && ln -s ../libiGeom.la libiGeom.la)
make[4]: Leaving directory `/home/jason/cgm/test/64-occ/itaps'
make[3]: Leaving directory `/home/jason/cgm/test/64-occ/itaps'
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/itaps'
Making all in test
make[2]: Entering directory `/home/jason/cgm/test/64-occ/test'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/test'
Making all in cgm_apps
make[2]: Entering directory `/home/jason/cgm/test/64-occ/cgm_apps'
Making all in examples
make[3]: Entering directory `/home/jason/cgm/test/64-occ/cgm_apps/examples'
Making all in facetdriver
make[4]: Entering directory `/home/jason/cgm/test/64-occ/cgm_apps/examples/facetdriver'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/jason/cgm/test/64-occ/cgm_apps/examples/facetdriver'
make[4]: Entering directory `/home/jason/cgm/test/64-occ/cgm_apps/examples'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/home/jason/cgm/test/64-occ/cgm_apps/examples'
make[3]: Leaving directory `/home/jason/cgm/test/64-occ/cgm_apps/examples'
make[3]: Entering directory `/home/jason/cgm/test/64-occ/cgm_apps'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/jason/cgm/test/64-occ/cgm_apps'
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/cgm_apps'
make[1]: Leaving directory `/home/jason/cgm/test/64-occ'
Making check in util
make[1]: Entering directory `/home/jason/cgm/test/64-occ/util'
make[1]: Nothing to be done for `check'.
make[1]: Leaving directory `/home/jason/cgm/test/64-occ/util'
Making check in geom
make[1]: Entering directory `/home/jason/cgm/test/64-occ/geom'
Making check in .
make[2]: Entering directory `/home/jason/cgm/test/64-occ/geom'
make[2]: Nothing to be done for `check-am'.
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/geom'
Making check in Cholla
make[2]: Entering directory `/home/jason/cgm/test/64-occ/geom/Cholla'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/geom/Cholla'
Making check in facetbool
make[2]: Entering directory `/home/jason/cgm/test/64-occ/geom/facetbool'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/geom/facetbool'
Making check in facet
make[2]: Entering directory `/home/jason/cgm/test/64-occ/geom/facet'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/geom/facet'
Making check in virtual
make[2]: Entering directory `/home/jason/cgm/test/64-occ/geom/virtual'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/geom/virtual'
Making check in OCC
make[2]: Entering directory `/home/jason/cgm/test/64-occ/geom/OCC'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/geom/OCC'
make[1]: Leaving directory `/home/jason/cgm/test/64-occ/geom'
Making check in init
make[1]: Entering directory `/home/jason/cgm/test/64-occ/init'
make[1]: Nothing to be done for `check'.
make[1]: Leaving directory `/home/jason/cgm/test/64-occ/init'
Making check in .
make[1]: Entering directory `/home/jason/cgm/test/64-occ'
make[1]: Leaving directory `/home/jason/cgm/test/64-occ'
Making check in itaps
make[1]: Entering directory `/home/jason/cgm/test/64-occ/itaps'
Making check in .
make[2]: Entering directory `/home/jason/cgm/test/64-occ/itaps'
make testgeom_occ
make[3]: Entering directory `/home/jason/cgm/test/64-occ/itaps'
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -L/opt/OpenCascade6.3/lib -o testgeom_occ testgeom_occ-testgeom.o libiGeom.la -lm
c++ -Wall -pipe -pedantic -g -o testgeom_occ testgeom_occ-testgeom.o -L/opt/OpenCascade6.3/lib ./.libs/libiGeom.a /home/jason/cgm/test/64-occ/.libs/libcgm.a /opt/OpenCascade6.3//lib/libTKFeat.so /opt/OpenCascade6.3//lib/libTKHLR.so /opt/OpenCascade6.3//lib/libTKIGES.so /opt/OpenCascade6.3//lib/libTKOffset.so /opt/OpenCascade6.3//lib/libTKFillet.so /opt/OpenCascade6.3//lib/libTKBool.so /opt/OpenCascade6.3//lib/libTKBO.so /opt/OpenCascade6.3//lib/libTKPrim.so /opt/OpenCascade6.3//lib/libTKSTEP.so /opt/OpenCascade6.3//lib/libTKSTEPAttr.so /opt/OpenCascade6.3//lib/libTKSTEP209.so /opt/OpenCascade6.3//lib/libTKSTEPBase.so /opt/OpenCascade6.3//lib/libTKSTL.so /opt/OpenCascade6.3//lib/libTKMesh.so /opt/OpenCascade6.3//lib/libTKXSBase.so /opt/OpenCascade6.3//lib/libTKShHealing.so /opt/OpenCascade6.3//lib/libTKLCAF.so /opt/OpenCascade6.3//lib/libTKCDF.so /opt/OpenCascade6.3//lib/libTKTopAlgo.so /opt/OpenCascade6.3//lib/libTKGeomAlgo.so /opt/OpenCascade6.3//lib/libTKBRep.so /opt/Open!
Cascade6.3//lib/libTKGeomBase.so /opt/OpenCascade6.3//lib/libTKG3d.so /opt/OpenCascade6.3//lib/libTKG2d.so /opt/OpenCascade6.3//lib/libTKMath.so /opt/OpenCascade6.3//lib/libTKernel.so -lpthread -ldl -lm -Wl,--rpath -Wl,/opt/OpenCascade6.3//lib -Wl,--rpath -Wl,/opt/OpenCascade6.3//lib
./.libs/libiGeom.a(iGeom_CGMA.o): In function `iGeom_load_cub_geometry':
/home/jason/cgm/test/64-occ/itaps/../../trunk/itaps/iGeom_CGMA.cc:5883: warning: the use of `tmpnam' is dangerous, better use `mkstemp'
make[3]: Leaving directory `/home/jason/cgm/test/64-occ/itaps'
make check-TESTS
make[3]: Entering directory `/home/jason/cgm/test/64-occ/itaps'
Using default input file: ../../trunk/itaps/../test/LeverArm.brep
Geometry engine set to: OCC Geometry Engine version 6.2.0
ITAPS GEOMETRY INTERFACE TEST PROGRAM:
gLoad:
Constructed 1 Volume: 1
Model contents:
vertices: 99
edges: 159
faces: 63
regions: 1
Success
tags: Tags defined on model: GLOBAL_ID, NAME
Success
gentity sets: Success
topology adjacencies: Success
construct: Created swept volume 4
Success
primitives: Success
transforms: Success
booleans: Updated volume(s): 11
Destroyed volume(s): 12
Updated volume(s): 11
Destroyed volume(s): 13
Success
shutdown: Success
TSTT TEST SUMMARY:
Number Tests: 9
Number Successful: 9
Number Not Implemented: 0
Number Failed: 0
PASS: testgeom_occ
==================
All 1 tests passed
==================
make[3]: Leaving directory `/home/jason/cgm/test/64-occ/itaps'
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/itaps'
make[1]: Leaving directory `/home/jason/cgm/test/64-occ/itaps'
Making check in test
make[1]: Entering directory `/home/jason/cgm/test/64-occ/test'
make sheet modify makept r_w test_occ
make[2]: Entering directory `/home/jason/cgm/test/64-occ/test'
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/test -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/init -I../../trunk/geom/ACIS -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/Cholla -I../../trunk/geom/OCC -I../../trunk/test -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -DSRCDIR=../../trunk/test -DHAVE_OCC -Wall -pipe -pedantic -g -MT sheet.o -MD -MP -MF .deps/sheet.Tpo -c -o sheet.o ../../trunk/test/sheet.cpp
mv -f .deps/sheet.Tpo .deps/sheet.Po
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -L/opt/OpenCascade6.3/lib -o sheet sheet.o ../libcgm.la -lm
c++ -Wall -pipe -pedantic -g -o sheet sheet.o -L/opt/OpenCascade6.3/lib ../.libs/libcgm.a /opt/OpenCascade6.3//lib/libTKFeat.so /opt/OpenCascade6.3//lib/libTKHLR.so /opt/OpenCascade6.3//lib/libTKIGES.so /opt/OpenCascade6.3//lib/libTKOffset.so /opt/OpenCascade6.3//lib/libTKFillet.so /opt/OpenCascade6.3//lib/libTKBool.so /opt/OpenCascade6.3//lib/libTKBO.so /opt/OpenCascade6.3//lib/libTKPrim.so /opt/OpenCascade6.3//lib/libTKSTEP.so /opt/OpenCascade6.3//lib/libTKSTEPAttr.so /opt/OpenCascade6.3//lib/libTKSTEP209.so /opt/OpenCascade6.3//lib/libTKSTEPBase.so /opt/OpenCascade6.3//lib/libTKSTL.so /opt/OpenCascade6.3//lib/libTKMesh.so /opt/OpenCascade6.3//lib/libTKXSBase.so /opt/OpenCascade6.3//lib/libTKShHealing.so /opt/OpenCascade6.3//lib/libTKLCAF.so /opt/OpenCascade6.3//lib/libTKCDF.so /opt/OpenCascade6.3//lib/libTKTopAlgo.so /opt/OpenCascade6.3//lib/libTKGeomAlgo.so /opt/OpenCascade6.3//lib/libTKBRep.so /opt/OpenCascade6.3//lib/libTKGeomBase.so /opt/OpenCascade6.3//lib/libTKG3d.!
so /opt/OpenCascade6.3//lib/libTKG2d.so /opt/OpenCascade6.3//lib/libTKMath.so /opt/OpenCascade6.3//lib/libTKernel.so -lpthread -ldl -lm -Wl,--rpath -Wl,/opt/OpenCascade6.3//lib -Wl,--rpath -Wl,/opt/OpenCascade6.3//lib
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/test -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/init -I../../trunk/geom/ACIS -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/Cholla -I../../trunk/geom/OCC -I../../trunk/test -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -DSRCDIR=../../trunk/test -DHAVE_OCC -Wall -pipe -pedantic -g -MT modify.o -MD -MP -MF .deps/modify.Tpo -c -o modify.o ../../trunk/test/modify.cpp
../../trunk/test/modify.cpp: In function ‘CubitStatus make_Point()’:
../../trunk/test/modify.cpp:878: warning: unused variable ‘vt3’
mv -f .deps/modify.Tpo .deps/modify.Po
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -L/opt/OpenCascade6.3/lib -o modify modify.o ../libcgm.la -lm
c++ -Wall -pipe -pedantic -g -o modify modify.o -L/opt/OpenCascade6.3/lib ../.libs/libcgm.a /opt/OpenCascade6.3//lib/libTKFeat.so /opt/OpenCascade6.3//lib/libTKHLR.so /opt/OpenCascade6.3//lib/libTKIGES.so /opt/OpenCascade6.3//lib/libTKOffset.so /opt/OpenCascade6.3//lib/libTKFillet.so /opt/OpenCascade6.3//lib/libTKBool.so /opt/OpenCascade6.3//lib/libTKBO.so /opt/OpenCascade6.3//lib/libTKPrim.so /opt/OpenCascade6.3//lib/libTKSTEP.so /opt/OpenCascade6.3//lib/libTKSTEPAttr.so /opt/OpenCascade6.3//lib/libTKSTEP209.so /opt/OpenCascade6.3//lib/libTKSTEPBase.so /opt/OpenCascade6.3//lib/libTKSTL.so /opt/OpenCascade6.3//lib/libTKMesh.so /opt/OpenCascade6.3//lib/libTKXSBase.so /opt/OpenCascade6.3//lib/libTKShHealing.so /opt/OpenCascade6.3//lib/libTKLCAF.so /opt/OpenCascade6.3//lib/libTKCDF.so /opt/OpenCascade6.3//lib/libTKTopAlgo.so /opt/OpenCascade6.3//lib/libTKGeomAlgo.so /opt/OpenCascade6.3//lib/libTKBRep.so /opt/OpenCascade6.3//lib/libTKGeomBase.so /opt/OpenCascade6.3//lib/libTKG3!
d.so /opt/OpenCascade6.3//lib/libTKG2d.so /opt/OpenCascade6.3//lib/libTKMath.so /opt/OpenCascade6.3//lib/libTKernel.so -lpthread -ldl -lm -Wl,--rpath -Wl,/opt/OpenCascade6.3//lib -Wl,--rpath -Wl,/opt/OpenCascade6.3//lib
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/test -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/init -I../../trunk/geom/ACIS -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/Cholla -I../../trunk/geom/OCC -I../../trunk/test -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -DSRCDIR=../../trunk/test -DHAVE_OCC -Wall -pipe -pedantic -g -MT makept.o -MD -MP -MF .deps/makept.Tpo -c -o makept.o ../../trunk/test/makept.cpp
../../trunk/test/makept.cpp: In function ‘CubitStatus make_Point()’:
../../trunk/test/makept.cpp:296: warning: unused variable ‘d’
../../trunk/test/makept.cpp:213: warning: unused variable ‘is_equal’
../../trunk/test/makept.cpp:301: warning: unused variable ‘new_face2’
../../trunk/test/makept.cpp:342: warning: unused variable ‘area’
../../trunk/test/makept.cpp:381: warning: unused variable ‘pc2’
../../trunk/test/makept.cpp:385: warning: unused variable ‘num_loops’
../../trunk/test/makept.cpp:390: warning: unused variable ‘angle’
mv -f .deps/makept.Tpo .deps/makept.Po
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -L/opt/OpenCascade6.3/lib -o makept makept.o ../libcgm.la -lm
c++ -Wall -pipe -pedantic -g -o makept makept.o -L/opt/OpenCascade6.3/lib ../.libs/libcgm.a /opt/OpenCascade6.3//lib/libTKFeat.so /opt/OpenCascade6.3//lib/libTKHLR.so /opt/OpenCascade6.3//lib/libTKIGES.so /opt/OpenCascade6.3//lib/libTKOffset.so /opt/OpenCascade6.3//lib/libTKFillet.so /opt/OpenCascade6.3//lib/libTKBool.so /opt/OpenCascade6.3//lib/libTKBO.so /opt/OpenCascade6.3//lib/libTKPrim.so /opt/OpenCascade6.3//lib/libTKSTEP.so /opt/OpenCascade6.3//lib/libTKSTEPAttr.so /opt/OpenCascade6.3//lib/libTKSTEP209.so /opt/OpenCascade6.3//lib/libTKSTEPBase.so /opt/OpenCascade6.3//lib/libTKSTL.so /opt/OpenCascade6.3//lib/libTKMesh.so /opt/OpenCascade6.3//lib/libTKXSBase.so /opt/OpenCascade6.3//lib/libTKShHealing.so /opt/OpenCascade6.3//lib/libTKLCAF.so /opt/OpenCascade6.3//lib/libTKCDF.so /opt/OpenCascade6.3//lib/libTKTopAlgo.so /opt/OpenCascade6.3//lib/libTKGeomAlgo.so /opt/OpenCascade6.3//lib/libTKBRep.so /opt/OpenCascade6.3//lib/libTKGeomBase.so /opt/OpenCascade6.3//lib/libTKG3!
d.so /opt/OpenCascade6.3//lib/libTKG2d.so /opt/OpenCascade6.3//lib/libTKMath.so /opt/OpenCascade6.3//lib/libTKernel.so -lpthread -ldl -lm -Wl,--rpath -Wl,/opt/OpenCascade6.3//lib -Wl,--rpath -Wl,/opt/OpenCascade6.3//lib
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/test -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/init -I../../trunk/geom/ACIS -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/Cholla -I../../trunk/geom/OCC -I../../trunk/test -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -DSRCDIR=../../trunk/test -DHAVE_OCC -Wall -pipe -pedantic -g -MT r_w.o -MD -MP -MF .deps/r_w.Tpo -c -o r_w.o ../../trunk/test/r_w.cpp
../../trunk/test/r_w.cpp: In function ‘CubitStatus make_Point()’:
../../trunk/test/r_w.cpp:177: warning: unused variable ‘d’
../../trunk/test/r_w.cpp:179: warning: unused variable ‘n’
mv -f .deps/r_w.Tpo .deps/r_w.Po
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -L/opt/OpenCascade6.3/lib -o r_w r_w.o ../libcgm.la -lm
c++ -Wall -pipe -pedantic -g -o r_w r_w.o -L/opt/OpenCascade6.3/lib ../.libs/libcgm.a /opt/OpenCascade6.3//lib/libTKFeat.so /opt/OpenCascade6.3//lib/libTKHLR.so /opt/OpenCascade6.3//lib/libTKIGES.so /opt/OpenCascade6.3//lib/libTKOffset.so /opt/OpenCascade6.3//lib/libTKFillet.so /opt/OpenCascade6.3//lib/libTKBool.so /opt/OpenCascade6.3//lib/libTKBO.so /opt/OpenCascade6.3//lib/libTKPrim.so /opt/OpenCascade6.3//lib/libTKSTEP.so /opt/OpenCascade6.3//lib/libTKSTEPAttr.so /opt/OpenCascade6.3//lib/libTKSTEP209.so /opt/OpenCascade6.3//lib/libTKSTEPBase.so /opt/OpenCascade6.3//lib/libTKSTL.so /opt/OpenCascade6.3//lib/libTKMesh.so /opt/OpenCascade6.3//lib/libTKXSBase.so /opt/OpenCascade6.3//lib/libTKShHealing.so /opt/OpenCascade6.3//lib/libTKLCAF.so /opt/OpenCascade6.3//lib/libTKCDF.so /opt/OpenCascade6.3//lib/libTKTopAlgo.so /opt/OpenCascade6.3//lib/libTKGeomAlgo.so /opt/OpenCascade6.3//lib/libTKBRep.so /opt/OpenCascade6.3//lib/libTKGeomBase.so /opt/OpenCascade6.3//lib/libTKG3d.so /!
opt/OpenCascade6.3//lib/libTKG2d.so /opt/OpenCascade6.3//lib/libTKMath.so /opt/OpenCascade6.3//lib/libTKernel.so -lpthread -ldl -lm -Wl,--rpath -Wl,/opt/OpenCascade6.3//lib -Wl,--rpath -Wl,/opt/OpenCascade6.3//lib
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/test -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/init -I../../trunk/geom/ACIS -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/Cholla -I../../trunk/geom/OCC -I../../trunk/test -I/opt/OpenCascade6.3/inc -D_OCC64 -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -DSRCDIR=../../trunk/test -DHAVE_OCC -Wall -pipe -pedantic -g -MT test_occ.o -MD -MP -MF .deps/test_occ.Tpo -c -o test_occ.o ../../trunk/test/test_occ.cpp
mv -f .deps/test_occ.Tpo .deps/test_occ.Po
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -L/opt/OpenCascade6.3/lib -o test_occ test_occ.o ../libcgm.la -lm
c++ -Wall -pipe -pedantic -g -o test_occ test_occ.o -L/opt/OpenCascade6.3/lib ../.libs/libcgm.a /opt/OpenCascade6.3//lib/libTKFeat.so /opt/OpenCascade6.3//lib/libTKHLR.so /opt/OpenCascade6.3//lib/libTKIGES.so /opt/OpenCascade6.3//lib/libTKOffset.so /opt/OpenCascade6.3//lib/libTKFillet.so /opt/OpenCascade6.3//lib/libTKBool.so /opt/OpenCascade6.3//lib/libTKBO.so /opt/OpenCascade6.3//lib/libTKPrim.so /opt/OpenCascade6.3//lib/libTKSTEP.so /opt/OpenCascade6.3//lib/libTKSTEPAttr.so /opt/OpenCascade6.3//lib/libTKSTEP209.so /opt/OpenCascade6.3//lib/libTKSTEPBase.so /opt/OpenCascade6.3//lib/libTKSTL.so /opt/OpenCascade6.3//lib/libTKMesh.so /opt/OpenCascade6.3//lib/libTKXSBase.so /opt/OpenCascade6.3//lib/libTKShHealing.so /opt/OpenCascade6.3//lib/libTKLCAF.so /opt/OpenCascade6.3//lib/libTKCDF.so /opt/OpenCascade6.3//lib/libTKTopAlgo.so /opt/OpenCascade6.3//lib/libTKGeomAlgo.so /opt/OpenCascade6.3//lib/libTKBRep.so /opt/OpenCascade6.3//lib/libTKGeomBase.so /opt/OpenCascade6.3//lib/lib!
TKG3d.so /opt/OpenCascade6.3//lib/libTKG2d.so /opt/OpenCascade6.3//lib/libTKMath.so /opt/OpenCascade6.3//lib/libTKernel.so -lpthread -ldl -lm -Wl,--rpath -Wl,/opt/OpenCascade6.3//lib -Wl,--rpath -Wl,/opt/OpenCascade6.3//lib
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/test'
make check-TESTS
make[2]: Entering directory `/home/jason/cgm/test/64-occ/test'
PASS: sheet
Modified volume
Created volume(s): 9
Destroyed volume(s): 2 to 7
Exported: 1 OCC Body
=======================================
Constructed 1 Volume: 10
=======================================
Updated volume(s): 19
Destroyed volume(s): 20
Created volume(s): 22, 23
Destroyed volume(s): 19, 21
Total 0 cuts performed, with from_shape having 6 faces.
Total 1 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 1 cuts performed, with from_shape having 7 faces.
Total 1 cuts performed, with from_shape having 8 faces.
Updated volume(s): 26
Total 0 cuts performed, with from_shape having 6 faces.
Total 1 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Updated volume(s): 27
Updated volume(s): 27
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 1 cuts performed, with from_shape having 7 faces.
Total 1 cuts performed, with from_shape having 8 faces.
Updated volume(s): 27
Total 2 cuts performed, with from_shape having 8 faces.
Updated volume(s): 24
Destroyed volume(s): 25
Modified volume
Total 1 cuts performed, with from_shape having 7 faces.
Total 0 cuts performed, with from_shape having 2 faces.
Updated volume(s): 32
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
WARNING: Cant make a scar on existing face without splitting it.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
WARNING: Cant make a scar on existing face without splitting it.
Total 0 cuts performed, with from_shape having 6 faces.
Updated volume(s): 33
Created volume(s): 34
WARNING: Surfaces or Shells can't be used to cut a body.
ERROR: Subtract FAILED
Total 4 cuts performed, with from_shape having 10 faces.
Total 3 cuts performed, with from_shape having 9 faces.
Updated volume(s): 35, 36
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
No projection on the surface.
Total 1 cuts performed, with from_shape having 6 faces.
Total 1 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 0 cuts performed, with from_shape having 6 faces.
Total 1 cuts performed, with from_shape having 7 faces.
Total 1 cuts performed, with from_shape having 8 faces.
Total 0 cuts performed, with from_shape having 8 faces.
Total 0 cuts performed, with from_shape having 8 faces.
Total 0 cuts performed, with from_shape having 8 faces.
Total 0 cuts performed, with from_shape having 8 faces.
Total 0 cuts performed, with from_shape having 8 faces.
Total 0 cuts performed, with from_shape having 8 faces.
Removing projected curves
Created volume(s): 39
Updated volume(s): 41
Destroyed volume(s): 40
Updated volume(s): 41
Destroyed volume(s): 42
The 1 body did not have common part with the tool_body.
The 1 body did not have common part with the tool_body.
Destroyed volume(s): 41, 43
Created volume(s): 46
Destroyed volume(s): 44
Updated volume(s): 45
Created volume(s): 49
Destroyed volume(s): 48
Updated volume(s): 47
Updated volume(s): 51
Destroyed volume(s): 50
Updated volume(s): 53
Destroyed volume(s): 52
Updated volume(s): 54
Destroyed volume(s): 55
Updated volume(s): 54
Modified volume
Created swept volume 60
Modified volume
Created swept volume 61
Created swept volume 62
Modified volume
Created swept volume 63
ERROR: Only surfaces with no intersection point with the axis can be revolve-swept.
Created swept volume 64
ERROR: Only curves with no intersection point with the axis can be revolve-swept.
Created swept volume 65
Created swept volume 66
ERROR: Only curves with no intersection point with the axis can be revolve-swept.
Created swept volume 67
Created swept volume 68
ERROR: Sweep along curve itself is not allowed.
Created swept volume 69
Created swept volume 70
Modified volume
Created swept volume 71
Created swept volume 72
ERROR: Errors found during Mergechk session.
FAIL: modify
=======================================
Constructed 1 Volume: 2
=======================================
=======================================
Constructed 1 Volume: 3
=======================================
=======================================
Constructed 2 Volumes: 4, 5
=======================================
Created volume(s): 6 to 9
Exported: 5 OCC Bodies
3 OCC Points
Exported: 2 OCC Bodies
3 OCC Points
PASS: makept
=======================================
Constructed 2 Volumes: 1, 2
=======================================
Exported: 2 OCC Bodies
=======================================
Constructed 2 Volumes: 3, 4
=======================================
Exported: 2 OCC Bodies
Created volume(s): 5, 6
Destroyed volume(s): 3, 4
Exported: 2 OCC Bodies
=======================================
Constructed 2 Volumes: 7, 8
=======================================
Updated volume(s): 7
Destroyed volume(s): 8
Exported: 1 OCC Body
=======================================
Constructed 2 Volumes: 9, 10
=======================================
Updated volume(s): 10
Destroyed volume(s): 9
Exported: 1 OCC Body
=======================================
Constructed 2 Volumes: 11, 12
=======================================
Updated volume(s): 11
Destroyed volume(s): 12
Exported: 1 OCC Body
=======================================
Constructed 2 Volumes: 13, 14
=======================================
Updated volume(s): 14
Destroyed volume(s): 13
Exported: 1 OCC Body
PASS: r_w
Constructed 1 Volume: 1
done...
PASS: test_occ
===================
1 of 5 tests failed
===================
make[2]: *** [check-TESTS] Error 1
make[2]: Leaving directory `/home/jason/cgm/test/64-occ/test'
make[1]: *** [check-am] Error 2
make[1]: Leaving directory `/home/jason/cgm/test/64-occ/test'
make: *** [check-recursive] Error 1
1
0
/bin/sh ./config.status --recheck
running CONFIG_SHELL=/bin/sh /bin/sh ../trunk/configure --enable-debug --enable-release --enable-32bit --with-occ=/opt/OpenCascade6.3-32bit --no-create --no-recursion
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking for cc... cc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking dependency style of cc... gcc3
checking how to run the C preprocessor... cc -E
checking for CC... no
checking for aCC... no
checking for cxx... no
checking for xlC_r... no
checking for xlC... no
checking for c++... c++
checking whether we are using the GNU C++ compiler... yes
checking whether c++ accepts -g... yes
checking dependency style of c++... gcc3
checking how to run the C++ preprocessor... c++ -E
checking for gfortran... gfortran
checking whether we are using the GNU Fortran compiler... yes
checking whether gfortran accepts -g... yes
checking for gfortran... gfortran
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether gfortran accepts -g... yes
checking for known C compilers... GNU
checking for known compiler/OS combinations... GNU:x86_64
checking for known c++ compilers... GNU
checking for known compiler/OS combinations... GNU:x86_64
checking whether we are using the GNU Fortran compiler... (cached) yes
checking whether gfortran accepts -g... (cached) yes
checking for a sed that does not truncate output... /bin/sed
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for ld used by cc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for /usr/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
checking how to recognize dependent libraries... pass_all
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking dlfcn.h usability... yes
checking dlfcn.h presence... yes
checking for dlfcn.h... yes
checking how to run the C++ preprocessor... c++ -E
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from cc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if cc supports -fno-rtti -fno-exceptions... no
checking for cc option to produce PIC... -fPIC
checking if cc PIC flag -fPIC works... yes
checking if cc static flag -static works... yes
checking if cc supports -c -o file.o... yes
checking whether the cc linker (/usr/bin/ld -m elf_i386) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
configure: creating libtool
appending configuration tag "CXX" to libtool
checking for ld used by c++... /usr/bin/ld -m elf_i386
checking if the linker (/usr/bin/ld -m elf_i386) is GNU ld... yes
checking whether the c++ linker (/usr/bin/ld -m elf_i386) supports shared libraries... yes
checking for c++ option to produce PIC... -fPIC
checking if c++ PIC flag -fPIC works... yes
checking if c++ static flag -static works... yes
checking if c++ supports -c -o file.o... yes
checking whether the c++ linker (/usr/bin/ld -m elf_i386) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
(cached) (cached) checking how to hardcode library paths into programs... immediate
appending configuration tag "F77" to libtool
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for gfortran option to produce PIC... -fPIC
checking if gfortran PIC flag -fPIC works... yes
checking if gfortran static flag -static works... yes
checking if gfortran supports -c -o file.o... yes
checking whether the gfortran linker (/usr/bin/ld -m elf_i386) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
(cached) (cached) checking how to hardcode library paths into programs... immediate
checking whether byte ordering is bigendian... no
checking how to get verbose linking output from gfortran... -v
checking for Fortran libraries of gfortran... -L/usr/lib/gcc/x86_64-linux-gnu/4.3.2 -L/usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../.. -lgfortranbegin -lgfortran -lm
checking for dummy main to link with Fortran libraries... none
checking for Fortran name-mangling scheme... unknown
configure: WARNING: unknown Fortran name-mangling scheme
checking for C++-standard library in std:: namespace... yes
checking for C++-standard I/O in std:: namespace... yes
checking if C++ template definitions should be included... yes
checking for 'include' subdir of /opt/OpenCascade6.3-32bit... inc
checking for 'lib' subdir of /opt/OpenCascade6.3-32bit... lib
checking if platform is 64-bit (-D_OCC64)... no
checking iostream usability... yes
checking iostream presence... yes
checking for iostream... yes
checking iostream.h usability... no
checking iostream.h presence... no
checking for iostream.h... no
checking iomanip usability... yes
checking iomanip presence... yes
checking for iomanip... yes
checking iomanip.h usability... no
checking iomanip.h presence... no
checking for iomanip.h... no
checking fstream usability... yes
checking fstream presence... yes
checking for fstream... yes
checking fstream.h usability... no
checking fstream.h presence... no
checking for fstream.h... no
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking Standard_Version.hxx usability... yes
checking Standard_Version.hxx presence... yes
checking for Standard_Version.hxx... yes
checking for create_mailbox in -lTKernel... no
checking for create_mailbox in -lTKernel... yes
CXXFLAGS = -Wall -pipe -pedantic -g -m32
configure: creating ./config.status
/bin/sh ./config.status
config.status: creating Makefile
config.status: creating util/Makefile
config.status: creating geom/Makefile
config.status: creating geom/ACIS/Makefile
config.status: creating geom/Cholla/Makefile
config.status: creating geom/facet/Makefile
config.status: creating geom/facetbool/Makefile
config.status: creating geom/OCC/Makefile
config.status: creating geom/parallel/Makefile
config.status: creating geom/virtual/Makefile
config.status: creating init/Makefile
config.status: creating cgm.make
config.status: creating itaps/Makefile
config.status: creating itaps/iGeom-Defs.inc
config.status: creating itaps/SIDL/Makefile
config.status: creating test/Makefile
config.status: creating cgm_apps/Makefile
config.status: creating cgm_apps/examples/Makefile
config.status: creating cgm_apps/examples/driverc++/Makefile
config.status: creating cgm_apps/examples/facetdriver/Makefile
config.status: creating config.h
config.status: config.h is unchanged
config.status: creating itaps/iBase_FCDefs.h
config.status: itaps/iBase_FCDefs.h is unchanged
config.status: executing depfiles commands
make all-recursive
make[1]: Entering directory `/home/jason/cgm/test/32-occ'
Making all in util
make[2]: Entering directory `/home/jason/cgm/test/32-occ/util'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/util'
Making all in geom
make[2]: Entering directory `/home/jason/cgm/test/32-occ/geom'
Making all in .
make[3]: Entering directory `/home/jason/cgm/test/32-occ/geom'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/jason/cgm/test/32-occ/geom'
Making all in Cholla
make[3]: Entering directory `/home/jason/cgm/test/32-occ/geom/Cholla'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/jason/cgm/test/32-occ/geom/Cholla'
Making all in facetbool
make[3]: Entering directory `/home/jason/cgm/test/32-occ/geom/facetbool'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/jason/cgm/test/32-occ/geom/facetbool'
Making all in facet
make[3]: Entering directory `/home/jason/cgm/test/32-occ/geom/facet'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/jason/cgm/test/32-occ/geom/facet'
Making all in virtual
make[3]: Entering directory `/home/jason/cgm/test/32-occ/geom/virtual'
make[3]: Nothing to be done for `all'.
make[3]: Leaving directory `/home/jason/cgm/test/32-occ/geom/virtual'
Making all in OCC
make[3]: Entering directory `/home/jason/cgm/test/32-occ/geom/OCC'
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCAttribSet.lo -MD -MP -MF .deps/OCCAttribSet.Tpo -c -o OCCAttribSet.lo ../../../trunk/geom/OCC/OCCAttribSet.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCAttribSet.lo -MD -MP -MF .deps/OCCAttribSet.Tpo -c ../../../trunk/geom/OCC/OCCAttribSet.cpp -o OCCAttribSet.o
../../../trunk/geom/OCC/OCCAttribSet.cpp: In static member function ‘static CubitStatus OCCAttribSet::get_attributes(TopoDS_Shape&, DLIList<CubitSimpleAttrib*>&)’:
../../../trunk/geom/OCC/OCCAttribSet.cpp:400: warning: unused variable ‘string’
mv -f .deps/OCCAttribSet.Tpo .deps/OCCAttribSet.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCBody.lo -MD -MP -MF .deps/OCCBody.Tpo -c -o OCCBody.lo ../../../trunk/geom/OCC/OCCBody.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCBody.lo -MD -MP -MF .deps/OCCBody.Tpo -c ../../../trunk/geom/OCC/OCCBody.cpp -o OCCBody.o
mv -f .deps/OCCBody.Tpo .deps/OCCBody.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCCoEdge.lo -MD -MP -MF .deps/OCCCoEdge.Tpo -c -o OCCCoEdge.lo ../../../trunk/geom/OCC/OCCCoEdge.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCCoEdge.lo -MD -MP -MF .deps/OCCCoEdge.Tpo -c ../../../trunk/geom/OCC/OCCCoEdge.cpp -o OCCCoEdge.o
mv -f .deps/OCCCoEdge.Tpo .deps/OCCCoEdge.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCCoFace.lo -MD -MP -MF .deps/OCCCoFace.Tpo -c -o OCCCoFace.lo ../../../trunk/geom/OCC/OCCCoFace.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCCoFace.lo -MD -MP -MF .deps/OCCCoFace.Tpo -c ../../../trunk/geom/OCC/OCCCoFace.cpp -o OCCCoFace.o
mv -f .deps/OCCCoFace.Tpo .deps/OCCCoFace.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCCurve.lo -MD -MP -MF .deps/OCCCurve.Tpo -c -o OCCCurve.lo ../../../trunk/geom/OCC/OCCCurve.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCCurve.lo -MD -MP -MF .deps/OCCCurve.Tpo -c ../../../trunk/geom/OCC/OCCCurve.cpp -o OCCCurve.o
mv -f .deps/OCCCurve.Tpo .deps/OCCCurve.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCLoop.lo -MD -MP -MF .deps/OCCLoop.Tpo -c -o OCCLoop.lo ../../../trunk/geom/OCC/OCCLoop.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCLoop.lo -MD -MP -MF .deps/OCCLoop.Tpo -c ../../../trunk/geom/OCC/OCCLoop.cpp -o OCCLoop.o
mv -f .deps/OCCLoop.Tpo .deps/OCCLoop.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCLump.lo -MD -MP -MF .deps/OCCLump.Tpo -c -o OCCLump.lo ../../../trunk/geom/OCC/OCCLump.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCLump.lo -MD -MP -MF .deps/OCCLump.Tpo -c ../../../trunk/geom/OCC/OCCLump.cpp -o OCCLump.o
mv -f .deps/OCCLump.Tpo .deps/OCCLump.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCModifyEngine.lo -MD -MP -MF .deps/OCCModifyEngine.Tpo -c -o OCCModifyEngine.lo ../../../trunk/geom/OCC/OCCModifyEngine.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCModifyEngine.lo -MD -MP -MF .deps/OCCModifyEngine.Tpo -c ../../../trunk/geom/OCC/OCCModifyEngine.cpp -o OCCModifyEngine.o
mv -f .deps/OCCModifyEngine.Tpo .deps/OCCModifyEngine.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCPoint.lo -MD -MP -MF .deps/OCCPoint.Tpo -c -o OCCPoint.lo ../../../trunk/geom/OCC/OCCPoint.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCPoint.lo -MD -MP -MF .deps/OCCPoint.Tpo -c ../../../trunk/geom/OCC/OCCPoint.cpp -o OCCPoint.o
../../../trunk/geom/OCC/OCCPoint.cpp: In member function ‘void OCCPoint::update_OCC_entity(BRepBuilderAPI_Transform*, BRepAlgoAPI_BooleanOperation*)’:
../../../trunk/geom/OCC/OCCPoint.cpp:285: warning: statement has no effect
mv -f .deps/OCCPoint.Tpo .deps/OCCPoint.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCQueryEngine.lo -MD -MP -MF .deps/OCCQueryEngine.Tpo -c -o OCCQueryEngine.lo ../../../trunk/geom/OCC/OCCQueryEngine.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCQueryEngine.lo -MD -MP -MF .deps/OCCQueryEngine.Tpo -c ../../../trunk/geom/OCC/OCCQueryEngine.cpp -o OCCQueryEngine.o
mv -f .deps/OCCQueryEngine.Tpo .deps/OCCQueryEngine.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCShell.lo -MD -MP -MF .deps/OCCShell.Tpo -c -o OCCShell.lo ../../../trunk/geom/OCC/OCCShell.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCShell.lo -MD -MP -MF .deps/OCCShell.Tpo -c ../../../trunk/geom/OCC/OCCShell.cpp -o OCCShell.o
mv -f .deps/OCCShell.Tpo .deps/OCCShell.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCSurface.lo -MD -MP -MF .deps/OCCSurface.Tpo -c -o OCCSurface.lo ../../../trunk/geom/OCC/OCCSurface.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCSurface.lo -MD -MP -MF .deps/OCCSurface.Tpo -c ../../../trunk/geom/OCC/OCCSurface.cpp -o OCCSurface.o
mv -f .deps/OCCSurface.Tpo .deps/OCCSurface.Plo
/bin/sh ../../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCDrawTool.lo -MD -MP -MF .deps/OCCDrawTool.Tpo -c -o OCCDrawTool.lo ../../../trunk/geom/OCC/OCCDrawTool.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -I. -I../../../trunk/util -I../../../trunk/geom -I../../../trunk/geom/Cholla -I../../../trunk/geom/facetbool -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT OCCDrawTool.lo -MD -MP -MF .deps/OCCDrawTool.Tpo -c ../../../trunk/geom/OCC/OCCDrawTool.cpp -o OCCDrawTool.o
mv -f .deps/OCCDrawTool.Tpo .deps/OCCDrawTool.Plo
/bin/sh ../../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -m32 -o libcubit_OCC.la OCCShapeAttributeSet.lo OCCAttribSet.lo OCCBody.lo OCCCoEdge.lo OCCCoFace.lo OCCCurve.lo OCCLoop.lo OCCLump.lo OCCModifyEngine.lo OCCParamTool.lo OCCPoint.lo OCCQueryEngine.lo OCCShell.lo OCCSurface.lo OCCDrawTool.lo -L/opt/OpenCascade6.3-32bit/lib -lTKMath -lTKXSBase -lTKernel -lTKShHealing -lTKBRep -lTKG3d -lTKBO -lTKFeat -lTKFillet -lTKG2d -lTKOffset -lTKBool -lTKGeomAlgo -lTKGeomBase -lTKPrim -lTKTopAlgo -lTKHLR -lTKIGES -lTKMesh -lTKPrim -lTKSTEP209 -lTKSTEPAttr -lTKSTEPBase -lTKSTEP -lTKSTL -lTKTopAlgo -lTKXSBase -lTKLCAF -ldl -lm
rm -fr .libs/libcubit_OCC.a .libs/libcubit_OCC.la
ar cru .libs/libcubit_OCC.a OCCShapeAttributeSet.o OCCAttribSet.o OCCBody.o OCCCoEdge.o OCCCoFace.o OCCCurve.o OCCLoop.o OCCLump.o OCCModifyEngine.o OCCParamTool.o OCCPoint.o OCCQueryEngine.o OCCShell.o OCCSurface.o OCCDrawTool.o
ranlib .libs/libcubit_OCC.a
creating libcubit_OCC.la
(cd .libs && rm -f libcubit_OCC.la && ln -s ../libcubit_OCC.la libcubit_OCC.la)
make[3]: Leaving directory `/home/jason/cgm/test/32-occ/geom/OCC'
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/geom'
Making all in init
make[2]: Entering directory `/home/jason/cgm/test/32-occ/init'
/bin/sh ../libtool --tag=CXX --mode=compile c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/init -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/geom/ACIS -I../../trunk/geom/OCC -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/cholla -I../../trunk/init -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT InitCGMA.lo -MD -MP -MF .deps/InitCGMA.Tpo -c -o InitCGMA.lo ../../trunk/init/InitCGMA.cpp
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/init -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/geom/ACIS -I../../trunk/geom/OCC -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/cholla -I../../trunk/init -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -Wall -pipe -pedantic -g -m32 -MT InitCGMA.lo -MD -MP -MF .deps/InitCGMA.Tpo -c ../../trunk/init/InitCGMA.cpp -o InitCGMA.o
mv -f .deps/InitCGMA.Tpo .deps/InitCGMA.Plo
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -m32 -o libcgma_init.la InitCGMA.lo -lm
rm -fr .libs/libcgma_init.a .libs/libcgma_init.la
ar cru .libs/libcgma_init.a InitCGMA.o
ranlib .libs/libcgma_init.a
creating libcgma_init.la
(cd .libs && rm -f libcgma_init.la && ln -s ../libcgma_init.la libcgma_init.la)
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/init'
Making all in .
make[2]: Entering directory `/home/jason/cgm/test/32-occ'
/bin/sh ./libtool --tag=CC --mode=link cc -Wall -pipe -pedantic -g -m32 -o libcgm.la -rpath /usr/local/lib init/libcgma_init.la geom/OCC/libcubit_OCC.la geom/virtual/libcubit_virtual.la geom/facet/libcubit_facet.la geom/Cholla/libcholla.la geom/facetbool/libcubit_facetbool.la geom/libcubit_geom.la util/libcubit_util.la -lTKMath -lTKXSBase -lTKernel -lTKShHealing -lTKBRep -lTKG3d -lTKBO -lTKFeat -lTKFillet -lTKG2d -lTKOffset -lTKBool -lTKGeomAlgo -lTKGeomBase -lTKPrim -lTKTopAlgo -lTKHLR -lTKIGES -lTKMesh -lTKPrim -lTKSTEP209 -lTKSTEPAttr -lTKSTEPBase -lTKSTEP -lTKSTL -lTKTopAlgo -lTKXSBase -lTKLCAF -ldl no -lm
rm -fr .libs/libcgm.a .libs/libcgm.la .libs/libcgm.lai
rm -fr .libs/libcgm.lax
mkdir .libs/libcgm.lax
rm -fr .libs/libcgm.lax/libcgma_init.a
mkdir .libs/libcgm.lax/libcgma_init.a
(cd .libs/libcgm.lax/libcgma_init.a && ar x /home/jason/cgm/test/32-occ/init/.libs/libcgma_init.a)
rm -fr .libs/libcgm.lax/libcubit_OCC.a
mkdir .libs/libcgm.lax/libcubit_OCC.a
(cd .libs/libcgm.lax/libcubit_OCC.a && ar x /home/jason/cgm/test/32-occ/geom/OCC/.libs/libcubit_OCC.a)
rm -fr .libs/libcgm.lax/libcubit_virtual.a
mkdir .libs/libcgm.lax/libcubit_virtual.a
(cd .libs/libcgm.lax/libcubit_virtual.a && ar x /home/jason/cgm/test/32-occ/geom/virtual/.libs/libcubit_virtual.a)
rm -fr .libs/libcgm.lax/libcubit_facet.a
mkdir .libs/libcgm.lax/libcubit_facet.a
(cd .libs/libcgm.lax/libcubit_facet.a && ar x /home/jason/cgm/test/32-occ/geom/facet/.libs/libcubit_facet.a)
rm -fr .libs/libcgm.lax/libcholla.a
mkdir .libs/libcgm.lax/libcholla.a
(cd .libs/libcgm.lax/libcholla.a && ar x /home/jason/cgm/test/32-occ/geom/Cholla/.libs/libcholla.a)
rm -fr .libs/libcgm.lax/libcubit_facetbool.a
mkdir .libs/libcgm.lax/libcubit_facetbool.a
(cd .libs/libcgm.lax/libcubit_facetbool.a && ar x /home/jason/cgm/test/32-occ/geom/facetbool/.libs/libcubit_facetbool.a)
rm -fr .libs/libcgm.lax/libcubit_geom.a
mkdir .libs/libcgm.lax/libcubit_geom.a
(cd .libs/libcgm.lax/libcubit_geom.a && ar x /home/jason/cgm/test/32-occ/geom/.libs/libcubit_geom.a)
rm -fr .libs/libcgm.lax/libcubit_util.a
mkdir .libs/libcgm.lax/libcubit_util.a
(cd .libs/libcgm.lax/libcubit_util.a && ar x /home/jason/cgm/test/32-occ/util/.libs/libcubit_util.a)
ar cru .libs/libcgm.a .libs/libcgm.lax/libcgma_init.a/InitCGMA.o .libs/libcgm.lax/libcubit_OCC.a/OCCBody.o .libs/libcgm.lax/libcubit_OCC.a/OCCLump.o .libs/libcgm.lax/libcubit_OCC.a/OCCCoFace.o .libs/libcgm.lax/libcubit_OCC.a/OCCCurve.o .libs/libcgm.lax/libcubit_OCC.a/OCCQueryEngine.o .libs/libcgm.lax/libcubit_OCC.a/OCCDrawTool.o .libs/libcgm.lax/libcubit_OCC.a/OCCAttribSet.o .libs/libcgm.lax/libcubit_OCC.a/OCCShell.o .libs/libcgm.lax/libcubit_OCC.a/OCCModifyEngine.o .libs/libcgm.lax/libcubit_OCC.a/OCCCoEdge.o .libs/libcgm.lax/libcubit_OCC.a/OCCParamTool.o .libs/libcgm.lax/libcubit_OCC.a/OCCPoint.o .libs/libcgm.lax/libcubit_OCC.a/OCCShapeAttributeSet.o .libs/libcgm.lax/libcubit_OCC.a/OCCSurface.o .libs/libcgm.lax/libcubit_OCC.a/OCCLoop.o .libs/libcgm.lax/libcubit_virtual.a/ImprintBoundaryTool.o .libs/libcgm.lax/libcubit_virtual.a/SegmentedCurve.o .libs/libcgm.lax/libcubit_virtual.a/CompositeLump.o .libs/libcgm.lax/libcubit_virtual.a/VirtualImprintTool.o .libs/libcgm.lax/l!
ibcubit_virtual.a/CompositeCoEdge.o .libs/libcgm.lax/libcubit_virtual.a/PartitionPoint.o .libs/libcgm.lax/libcubit_virtual.a/CompositeGeom.o .libs/libcgm.lax/libcubit_virtual.a/PartitionLumpImprint.o .libs/libcgm.lax/libcubit_virtual.a/PartitionCurve.o .libs/libcgm.lax/libcubit_virtual.a/PartitionLoop.o .libs/libcgm.lax/libcubit_virtual.a/VirtualQueryEngine.o .libs/libcgm.lax/libcubit_virtual.a/CAPartitionVG.o .libs/libcgm.lax/libcubit_virtual.a/PartSurfFacetTool.o .libs/libcgm.lax/libcubit_virtual.a/TDVGFacetSplit.o .libs/libcgm.lax/libcubit_virtual.a/PartitionCoEdge.o .libs/libcgm.lax/libcubit_virtual.a/PartitionLump.o .libs/libcgm.lax/libcubit_virtual.a/PartitionBody.o .libs/libcgm.lax/libcubit_virtual.a/CompositeTool.o .libs/libcgm.lax/libcubit_virtual.a/FaceterPointData.o .libs/libcgm.lax/libcubit_virtual.a/FaceterFacetData.o .libs/libcgm.lax/libcubit_virtual.a/Faceter.o .libs/libcgm.lax/libcubit_virtual.a/CollapseAngleTool.o .libs/libcgm.lax/libcubit_virtual.a/HiddenE!
ntitySet.o .libs/libcgm.lax/libcubit_virtual.a/CAVirtualVG.o .libs/lib
cgm.lax/libcubit_virtual.a/SubCurve.o .libs/libcgm.lax/libcubit_virtual.a/PST_Data.o .libs/libcgm.lax/libcubit_virtual.a/PartitionTool.o .libs/libcgm.lax/libcubit_virtual.a/ImprintPointData.o .libs/libcgm.lax/libcubit_virtual.a/SubSurface.o .libs/libcgm.lax/libcubit_virtual.a/CACompositeVG.o .libs/libcgm.lax/libcubit_virtual.a/SubEntitySet.o .libs/libcgm.lax/libcubit_virtual.a/FacetProjectTool.o .libs/libcgm.lax/libcubit_virtual.a/CompositeEngine.o .libs/libcgm.lax/libcubit_virtual.a/PartPTCurve.o .libs/libcgm.lax/libcubit_virtual.a/TDVGFacetOwner.o .libs/libcgm.lax/libcubit_virtual.a/ImprintLineSegment.o .libs/libcgm.lax/libcubit_virtual.a/AllocMemManagersVirtual.o .libs/libcgm.lax/libcubit_virtual.a/CompositeAttrib.o .libs/libcgm.lax/libcubit_virtual.a/CompSurfFacets.o .libs/libcgm.lax/libcubit_virtual.a/CompositeBody.o .libs/libcgm.lax/libcubit_virtual.a/CompositeCoSurf.o .libs/libcgm.lax/libcubit_virtual.a/PartitionCoSurf.o .libs/libcgm.lax/libcubit_virtual.a/PartitionSh!
ell.o .libs/libcgm.lax/libcubit_virtual.a/CompositeSurface.o .libs/libcgm.lax/libcubit_virtual.a/CompositePoint.o .libs/libcgm.lax/libcubit_virtual.a/PartitionSurface.o .libs/libcgm.lax/libcubit_virtual.a/CompositeCurve.o .libs/libcgm.lax/libcubit_virtual.a/CompositeShell.o .libs/libcgm.lax/libcubit_virtual.a/PartitionEntity.o .libs/libcgm.lax/libcubit_virtual.a/CompositeLoop.o .libs/libcgm.lax/libcubit_virtual.a/PartitionEngine.o .libs/libcgm.lax/libcubit_facet.a/FacetAttribSet.o .libs/libcgm.lax/libcubit_facet.a/GridSearchTree.o .libs/libcgm.lax/libcubit_facet.a/FacetLoop.o .libs/libcgm.lax/libcubit_facet.a/FacetLump.o .libs/libcgm.lax/libcubit_facet.a/FacetParamTool.o .libs/libcgm.lax/libcubit_facet.a/FacetCoEdge.o .libs/libcgm.lax/libcubit_facet.a/FacetSurface.o .libs/libcgm.lax/libcubit_facet.a/FacetCurve.o .libs/libcgm.lax/libcubit_facet.a/FacetShell.o .libs/libcgm.lax/libcubit_facet.a/FacetBody.o .libs/libcgm.lax/libcubit_facet.a/FacetboolInterface.o .libs/libcgm.la!
x/libcubit_facet.a/FacetModifyEngine.o .libs/libcgm.lax/libcubit_facet
.a/FacetPoint.o .libs/libcgm.lax/libcubit_facet.a/FacetAttrib.o .libs/libcgm.lax/libcubit_facet.a/FacetQueryEngine.o .libs/libcgm.lax/libcholla.a/TDChordal.o .libs/libcgm.lax/libcholla.a/CubitPoint.o .libs/libcgm.lax/libcholla.a/ChollaPoint.o .libs/libcgm.lax/libcholla.a/FacetEvalTool.o .libs/libcgm.lax/libcholla.a/CubitQuadFacet.o .libs/libcgm.lax/libcholla.a/PointGridSearch.o .libs/libcgm.lax/libcholla.a/FacetEntity.o .libs/libcgm.lax/libcholla.a/Cholla.o .libs/libcgm.lax/libcholla.a/GeoNode.o .libs/libcgm.lax/libcholla.a/TDFacetBoundaryEdge.o .libs/libcgm.lax/libcholla.a/ChordalAxis.o .libs/libcgm.lax/libcholla.a/PointLoopFacetor.o .libs/libcgm.lax/libcholla.a/ChollaEngine.o .libs/libcgm.lax/libcholla.a/debug.o .libs/libcgm.lax/libcholla.a/ChollaSkinTool.o .libs/libcgm.lax/libcholla.a/ChollaEntity.o .libs/libcgm.lax/libcholla.a/LoopParamTool.o .libs/libcgm.lax/libcholla.a/CubitFacetData.o .libs/libcgm.lax/libcholla.a/GeoTet.o .libs/libcgm.lax/libcholla.a/AllocMemManagers!
Cholla.o .libs/libcgm.lax/libcholla.a/CubitFacetEdge.o .libs/libcgm.lax/libcholla.a/CubitFacet.o .libs/libcgm.lax/libcholla.a/CurveFacetEvalTool.o .libs/libcgm.lax/libcholla.a/FacetDataUtil.o .libs/libcgm.lax/libcholla.a/CubitFacetEdgeData.o .libs/libcgm.lax/libcholla.a/TDGeomFacet.o .libs/libcgm.lax/libcholla.a/CubitPointData.o .libs/libcgm.lax/libcholla.a/ChollaSurface.o .libs/libcgm.lax/libcholla.a/CubitQuadFacetData.o .libs/libcgm.lax/libcholla.a/TDFacetboolData.o .libs/libcgm.lax/libcholla.a/ChollaCurve.o .libs/libcgm.lax/libcholla.a/TDFacetBoundaryPoint.o .libs/libcgm.lax/libcubit_facetbool.a/FBRetriangulate.o .libs/libcgm.lax/libcubit_facetbool.a/FBDataUtil.o .libs/libcgm.lax/libcubit_facetbool.a/FBIntersect.o .libs/libcgm.lax/libcubit_facetbool.a/KdTree.o .libs/libcgm.lax/libcubit_facetbool.a/FBImprint.o .libs/libcgm.lax/libcubit_facetbool.a/FBTiler.o .libs/libcgm.lax/libcubit_facetbool.a/IntegerHash.o .libs/libcgm.lax/libcubit_facetbool.a/FBClassify.o .libs/libcgm!
.lax/libcubit_facetbool.a/FBPolyhedron.o .libs/libcgm.lax/libcubit_ge
om.a/CoVolume.o .libs/libcgm.lax/libcubit_geom.a/RefGroup.o .libs/libcgm.lax/libcubit_geom.a/GeometryFeatureEngine.o .libs/libcgm.lax/libcubit_geom.a/AllocMemManagersGeom.o .libs/libcgm.lax/libcubit_geom.a/OffsetSplitTool.o .libs/libcgm.lax/libcubit_geom.a/RefVertex.o .libs/libcgm.lax/libcubit_geom.a/CubitPolygon.o .libs/libcgm.lax/libcubit_geom.a/CAEntityColor.o .libs/libcgm.lax/libcubit_geom.a/TDSplitSurface.o .libs/libcgm.lax/libcubit_geom.a/GeomDataObserver.o .libs/libcgm.lax/libcubit_geom.a/SurfaceSM.o .libs/libcgm.lax/libcubit_geom.a/BridgeManager.o .libs/libcgm.lax/libcubit_geom.a/CoFace.o .libs/libcgm.lax/libcubit_geom.a/CAEntityName.o .libs/libcgm.lax/libcubit_geom.a/CAActuateSet.o .libs/libcgm.lax/libcubit_geom.a/GeometryHealerEngine.o .libs/libcgm.lax/libcubit_geom.a/GeomMeasureTool.o .libs/libcgm.lax/libcubit_geom.a/CAMergePartner.o .libs/libcgm.lax/libcubit_geom.a/GeometryUtil.o .libs/libcgm.lax/libcubit_geom.a/GeometryQueryEngine.o .libs/libcgm.lax/libcubit_geo!
m.a/CGMEngineDynamicLoader.o .libs/libcgm.lax/libcubit_geom.a/PointSM.o .libs/libcgm.lax/libcubit_geom.a/CubitAttribUser.o .libs/libcgm.lax/libcubit_geom.a/RefFace.o .libs/libcgm.lax/libcubit_geom.a/CAMergeStatus.o .libs/libcgm.lax/libcubit_geom.a/TDSurfaceOverlap.o .libs/libcgm.lax/libcubit_geom.a/Lump.o .libs/libcgm.lax/libcubit_geom.a/MedialTool2D.o .libs/libcgm.lax/libcubit_geom.a/RefEntityName.o .libs/libcgm.lax/libcubit_geom.a/GSaveOpen.o .libs/libcgm.lax/libcubit_geom.a/CAUniqueId.o .libs/libcgm.lax/libcubit_geom.a/TopologyBridge.o .libs/libcgm.lax/libcubit_geom.a/CubitAttribManager.o .libs/libcgm.lax/libcubit_geom.a/TDUniqueId.o .libs/libcgm.lax/libcubit_geom.a/CurveOverlapFacet.o .libs/libcgm.lax/libcubit_geom.a/GeometryFeatureTool.o .libs/libcgm.lax/libcubit_geom.a/CADeferredAttrib.o .libs/libcgm.lax/libcubit_geom.a/CoVertex.o .libs/libcgm.lax/libcubit_geom.a/GeometryQueryTool.o .libs/libcgm.lax/libcubit_geom.a/RefEntity.o .libs/libcgm.lax/libcubit_geom.a/SphereEv!
aluator.o .libs/libcgm.lax/libcubit_geom.a/Shell.o .libs/libcgm.lax/li
bcubit_geom.a/LumpSM.o .libs/libcgm.lax/libcubit_geom.a/BoundingBoxTool.o .libs/libcgm.lax/libcubit_geom.a/SurfaceOverlapTool.o .libs/libcgm.lax/libcubit_geom.a/CAEntityId.o .libs/libcgm.lax/libcubit_geom.a/Curve.o .libs/libcgm.lax/libcubit_geom.a/Point.o .libs/libcgm.lax/libcubit_geom.a/SplitSurfaceTool.o .libs/libcgm.lax/libcubit_geom.a/RefVolume.o .libs/libcgm.lax/libcubit_geom.a/Loop.o .libs/libcgm.lax/libcubit_geom.a/RefEdge.o .libs/libcgm.lax/libcubit_geom.a/TDCAGE.o .libs/libcgm.lax/libcubit_geom.a/MedialTool3D.o .libs/libcgm.lax/libcubit_geom.a/TDSourceFeature.o .libs/libcgm.lax/libcubit_geom.a/CubitSimpleAttrib.o .libs/libcgm.lax/libcubit_geom.a/CAGroup.o .libs/libcgm.lax/libcubit_geom.a/MergeToolAssistant.o .libs/libcgm.lax/libcubit_geom.a/GeometryModifyEngine.o .libs/libcgm.lax/libcubit_geom.a/GeometryEntity.o .libs/libcgm.lax/libcubit_geom.a/ModelQueryEngine.o .libs/libcgm.lax/libcubit_geom.a/AnalyticGeometryTool.o .libs/libcgm.lax/libcubit_geom.a/GfxPreview.o .l!
ibs/libcgm.lax/libcubit_geom.a/DAG.o .libs/libcgm.lax/libcubit_geom.a/RefCollection.o .libs/libcgm.lax/libcubit_geom.a/RefEntityFactory.o .libs/libcgm.lax/libcubit_geom.a/CASourceFeature.o .libs/libcgm.lax/libcubit_geom.a/SurfParamTool.o .libs/libcgm.lax/libcubit_geom.a/GeometryModifyTool.o .libs/libcgm.lax/libcubit_geom.a/LoopSM.o .libs/libcgm.lax/libcubit_geom.a/ModelEntity.o .libs/libcgm.lax/libcubit_geom.a/Surface.o .libs/libcgm.lax/libcubit_geom.a/SenseEntity.o .libs/libcgm.lax/libcubit_geom.a/CylinderEvaluator.o .libs/libcgm.lax/libcubit_geom.a/GroupingEntity.o .libs/libcgm.lax/libcubit_geom.a/BodySM.o .libs/libcgm.lax/libcubit_geom.a/CurveSM.o .libs/libcgm.lax/libcubit_geom.a/CoEdge.o .libs/libcgm.lax/libcubit_geom.a/MergeTool.o .libs/libcgm.lax/libcubit_geom.a/CGMApp.o .libs/libcgm.lax/libcubit_geom.a/CubitAttrib.o .libs/libcgm.lax/libcubit_geom.a/CoEdgeSM.o .libs/libcgm.lax/libcubit_geom.a/TopologyEntity.o .libs/libcgm.lax/libcubit_geom.a/MidPlaneTool.o .libs/libcg!
m.lax/libcubit_geom.a/OldUnmergeCode.o .libs/libcgm.lax/libcubit_geom.
a/Chain.o .libs/libcgm.lax/libcubit_geom.a/SurfaceOverlapFacet.o .libs/libcgm.lax/libcubit_geom.a/GeometryHealerTool.o .libs/libcgm.lax/libcubit_geom.a/Body.o .libs/libcgm.lax/libcubit_geom.a/DagDrawingTool.o .libs/libcgm.lax/libcubit_geom.a/BasicTopologyEntity.o .libs/libcgm.lax/libcubit_geom.a/CollectionEntity.o .libs/libcgm.lax/libcubit_geom.a/ShellSM.o .libs/libcgm.lax/libcubit_util.a/GMem.o .libs/libcgm.lax/libcubit_util.a/CubitCoordinateSystem.o .libs/libcgm.lax/libcubit_util.a/GfxDebug.o .libs/libcgm.lax/libcubit_util.a/CubitString.o .libs/libcgm.lax/libcubit_util.a/StubProgressTool.o .libs/libcgm.lax/libcubit_util.a/TextProgressTool.o .libs/libcgm.lax/libcubit_util.a/TDUPtr.o .libs/libcgm.lax/libcubit_util.a/CubitStack.o .libs/libcgm.lax/libcubit_util.a/CubitMessage.o .libs/libcgm.lax/libcubit_util.a/CubitFileIOWrapper.o .libs/libcgm.lax/libcubit_util.a/CubitFileUtil.o .libs/libcgm.lax/libcubit_util.a/CubitEntity.o .libs/libcgm.lax/libcubit_util.a/CubitVector.o .lib!
s/libcgm.lax/libcubit_util.a/IntersectionTool.o .libs/libcgm.lax/libcubit_util.a/MemoryBlock.o .libs/libcgm.lax/libcubit_util.a/Queue.o .libs/libcgm.lax/libcubit_util.a/SettingHolder.o .libs/libcgm.lax/libcubit_util.a/Cubit2DPoint.o .libs/libcgm.lax/libcubit_util.a/CubitCollection.o .libs/libcgm.lax/libcubit_util.a/PlanarParamTool.o .libs/libcgm.lax/libcubit_util.a/ArrayBasedContainer.o .libs/libcgm.lax/libcubit_util.a/GetLongOpt.o .libs/libcgm.lax/libcubit_util.a/CubitFileFEModel.o .libs/libcgm.lax/libcubit_util.a/AllocMemManagersList.o .libs/libcgm.lax/libcubit_util.a/CubitPlane.o .libs/libcgm.lax/libcubit_util.a/CubitDynamicLoader.o .libs/libcgm.lax/libcubit_util.a/TtyProgressTool.o .libs/libcgm.lax/libcubit_util.a/CubitObservable.o .libs/libcgm.lax/libcubit_util.a/DIntArray.o .libs/libcgm.lax/libcubit_util.a/DynamicArray.o .libs/libcgm.lax/libcubit_util.a/ToolData.o .libs/libcgm.lax/libcubit_util.a/ToolDataUser.o .libs/libcgm.lax/libcubit_util.a/RandomMersenne.o .libs/l!
ibcgm.lax/libcubit_util.a/SDLList.o .libs/libcgm.lax/libcubit_util.a/C
ubitBox.o .libs/libcgm.lax/libcubit_util.a/CubitTransformMatrix.o .libs/libcgm.lax/libcubit_util.a/ParamCubitPlane.o .libs/libcgm.lax/libcubit_util.a/CubitFileMetaData.o .libs/libcgm.lax/libcubit_util.a/DLList.o .libs/libcgm.lax/libcubit_util.a/CubitFile.o .libs/libcgm.lax/libcubit_util.a/CubitMatrix.o .libs/libcgm.lax/libcubit_util.a/CubitObserver.o .libs/libcgm.lax/libcubit_util.a/CubitContainer.o .libs/libcgm.lax/libcubit_util.a/Tree.o .libs/libcgm.lax/libcubit_util.a/AppUtil.o .libs/libcgm.lax/libcubit_util.a/CpuTimer.o .libs/libcgm.lax/libcubit_util.a/MemoryManager.o .libs/libcgm.lax/libcubit_util.a/CubitUtil.o .libs/libcgm.lax/libcubit_util.a/SettingHandler.o
ranlib .libs/libcgm.a
rm -fr .libs/libcgm.lax
creating libcgm.la
(cd .libs && rm -f libcgm.la && ln -s ../libcgm.la libcgm.la)
make[2]: Leaving directory `/home/jason/cgm/test/32-occ'
Making all in itaps
make[2]: Entering directory `/home/jason/cgm/test/32-occ/itaps'
make all-recursive
make[3]: Entering directory `/home/jason/cgm/test/32-occ/itaps'
Making all in .
make[4]: Entering directory `/home/jason/cgm/test/32-occ/itaps'
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -m32 -o libiGeom.la -rpath /usr/local/lib CATag.lo iGeom_CGMA.lo iGeomError.lo ../libcgm.la -lm
rm -fr .libs/libiGeom.a .libs/libiGeom.la .libs/libiGeom.lai
ar cru .libs/libiGeom.a CATag.o iGeom_CGMA.o iGeomError.o
ranlib .libs/libiGeom.a
creating libiGeom.la
(cd .libs && rm -f libiGeom.la && ln -s ../libiGeom.la libiGeom.la)
make[4]: Leaving directory `/home/jason/cgm/test/32-occ/itaps'
make[3]: Leaving directory `/home/jason/cgm/test/32-occ/itaps'
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/itaps'
Making all in test
make[2]: Entering directory `/home/jason/cgm/test/32-occ/test'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/test'
Making all in cgm_apps
make[2]: Entering directory `/home/jason/cgm/test/32-occ/cgm_apps'
Making all in examples
make[3]: Entering directory `/home/jason/cgm/test/32-occ/cgm_apps/examples'
Making all in facetdriver
make[4]: Entering directory `/home/jason/cgm/test/32-occ/cgm_apps/examples/facetdriver'
make[4]: Nothing to be done for `all'.
make[4]: Leaving directory `/home/jason/cgm/test/32-occ/cgm_apps/examples/facetdriver'
make[4]: Entering directory `/home/jason/cgm/test/32-occ/cgm_apps/examples'
make[4]: Nothing to be done for `all-am'.
make[4]: Leaving directory `/home/jason/cgm/test/32-occ/cgm_apps/examples'
make[3]: Leaving directory `/home/jason/cgm/test/32-occ/cgm_apps/examples'
make[3]: Entering directory `/home/jason/cgm/test/32-occ/cgm_apps'
make[3]: Nothing to be done for `all-am'.
make[3]: Leaving directory `/home/jason/cgm/test/32-occ/cgm_apps'
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/cgm_apps'
make[1]: Leaving directory `/home/jason/cgm/test/32-occ'
Making check in util
make[1]: Entering directory `/home/jason/cgm/test/32-occ/util'
make[1]: Nothing to be done for `check'.
make[1]: Leaving directory `/home/jason/cgm/test/32-occ/util'
Making check in geom
make[1]: Entering directory `/home/jason/cgm/test/32-occ/geom'
Making check in .
make[2]: Entering directory `/home/jason/cgm/test/32-occ/geom'
make[2]: Nothing to be done for `check-am'.
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/geom'
Making check in Cholla
make[2]: Entering directory `/home/jason/cgm/test/32-occ/geom/Cholla'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/geom/Cholla'
Making check in facetbool
make[2]: Entering directory `/home/jason/cgm/test/32-occ/geom/facetbool'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/geom/facetbool'
Making check in facet
make[2]: Entering directory `/home/jason/cgm/test/32-occ/geom/facet'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/geom/facet'
Making check in virtual
make[2]: Entering directory `/home/jason/cgm/test/32-occ/geom/virtual'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/geom/virtual'
Making check in OCC
make[2]: Entering directory `/home/jason/cgm/test/32-occ/geom/OCC'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/geom/OCC'
make[1]: Leaving directory `/home/jason/cgm/test/32-occ/geom'
Making check in init
make[1]: Entering directory `/home/jason/cgm/test/32-occ/init'
make[1]: Nothing to be done for `check'.
make[1]: Leaving directory `/home/jason/cgm/test/32-occ/init'
Making check in .
make[1]: Entering directory `/home/jason/cgm/test/32-occ'
make[1]: Leaving directory `/home/jason/cgm/test/32-occ'
Making check in itaps
make[1]: Entering directory `/home/jason/cgm/test/32-occ/itaps'
Making check in .
make[2]: Entering directory `/home/jason/cgm/test/32-occ/itaps'
make testgeom_occ
make[3]: Entering directory `/home/jason/cgm/test/32-occ/itaps'
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -m32 -L/opt/OpenCascade6.3-32bit/lib -o testgeom_occ testgeom_occ-testgeom.o libiGeom.la -lm
c++ -Wall -pipe -pedantic -g -m32 -o testgeom_occ testgeom_occ-testgeom.o -L/opt/OpenCascade6.3-32bit/lib ./.libs/libiGeom.a /home/jason/cgm/test/32-occ/.libs/libcgm.a /opt/OpenCascade6.3-32bit/lib/libTKFeat.so /opt/OpenCascade6.3-32bit/lib/libTKHLR.so /opt/OpenCascade6.3-32bit/lib/libTKIGES.so /opt/OpenCascade6.3-32bit/lib/libTKOffset.so /opt/OpenCascade6.3-32bit/lib/libTKFillet.so /opt/OpenCascade6.3-32bit/lib/libTKBool.so /opt/OpenCascade6.3-32bit/lib/libTKBO.so /opt/OpenCascade6.3-32bit/lib/libTKPrim.so /opt/OpenCascade6.3-32bit/lib/libTKSTEP.so /opt/OpenCascade6.3-32bit/lib/libTKSTEPAttr.so /opt/OpenCascade6.3-32bit/lib/libTKSTEP209.so /opt/OpenCascade6.3-32bit/lib/libTKSTEPBase.so /opt/OpenCascade6.3-32bit/lib/libTKSTL.so /opt/OpenCascade6.3-32bit/lib/libTKMesh.so /opt/OpenCascade6.3-32bit/lib/libTKXSBase.so /opt/OpenCascade6.3-32bit/lib/libTKShHealing.so /opt/OpenCascade6.3-32bit/lib/libTKLCAF.so /opt/OpenCascade6.3-32bit/lib/libTKCDF.so /opt/OpenCascade6.3-32bit/lib!
/libTKTopAlgo.so /opt/OpenCascade6.3-32bit/lib/libTKGeomAlgo.so /opt/OpenCascade6.3-32bit/lib/libTKBRep.so /opt/OpenCascade6.3-32bit/lib/libTKGeomBase.so /opt/OpenCascade6.3-32bit/lib/libTKG3d.so /opt/OpenCascade6.3-32bit/lib/libTKG2d.so /opt/OpenCascade6.3-32bit/lib/libTKMath.so /opt/OpenCascade6.3-32bit/lib/libTKernel.so -lpthread -ldl -lm -Wl,--rpath -Wl,/opt/OpenCascade6.3-32bit/lib -Wl,--rpath -Wl,/opt/OpenCascade6.3-32bit/lib
./.libs/libiGeom.a(iGeom_CGMA.o): In function `iGeom_load_cub_geometry':
/home/jason/cgm/test/32-occ/itaps/../../trunk/itaps/iGeom_CGMA.cc:5883: warning: the use of `tmpnam' is dangerous, better use `mkstemp'
make[3]: Leaving directory `/home/jason/cgm/test/32-occ/itaps'
make check-TESTS
make[3]: Entering directory `/home/jason/cgm/test/32-occ/itaps'
Using default input file: ../../trunk/itaps/../test/LeverArm.brep
Geometry engine set to: OCC Geometry Engine version 6.2.0
ITAPS GEOMETRY INTERFACE TEST PROGRAM:
gLoad:
Constructed 1 Volume: 1
Model contents:
vertices: 99
edges: 159
faces: 63
regions: 1
Success
tags: Tags defined on model: GLOBAL_ID, NAME
Success
gentity sets: Success
topology adjacencies: Success
construct: Created swept volume 4
Success
primitives: Success
transforms: Success
booleans: Updated volume(s): 11
Destroyed volume(s): 12
Updated volume(s): 11
Destroyed volume(s): 13
Success
shutdown: Success
TSTT TEST SUMMARY:
Number Tests: 9
Number Successful: 9
Number Not Implemented: 0
Number Failed: 0
PASS: testgeom_occ
==================
All 1 tests passed
==================
make[3]: Leaving directory `/home/jason/cgm/test/32-occ/itaps'
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/itaps'
make[1]: Leaving directory `/home/jason/cgm/test/32-occ/itaps'
Making check in test
make[1]: Entering directory `/home/jason/cgm/test/32-occ/test'
make sheet modify makept r_w test_occ
make[2]: Entering directory `/home/jason/cgm/test/32-occ/test'
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/test -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/init -I../../trunk/geom/ACIS -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/Cholla -I../../trunk/geom/OCC -I../../trunk/test -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -DSRCDIR=../../trunk/test -DHAVE_OCC -Wall -pipe -pedantic -g -m32 -MT sheet.o -MD -MP -MF .deps/sheet.Tpo -c -o sheet.o ../../trunk/test/sheet.cpp
mv -f .deps/sheet.Tpo .deps/sheet.Po
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -m32 -L/opt/OpenCascade6.3-32bit/lib -o sheet sheet.o ../libcgm.la -lm
c++ -Wall -pipe -pedantic -g -m32 -o sheet sheet.o -L/opt/OpenCascade6.3-32bit/lib ../.libs/libcgm.a /opt/OpenCascade6.3-32bit/lib/libTKFeat.so /opt/OpenCascade6.3-32bit/lib/libTKHLR.so /opt/OpenCascade6.3-32bit/lib/libTKIGES.so /opt/OpenCascade6.3-32bit/lib/libTKOffset.so /opt/OpenCascade6.3-32bit/lib/libTKFillet.so /opt/OpenCascade6.3-32bit/lib/libTKBool.so /opt/OpenCascade6.3-32bit/lib/libTKBO.so /opt/OpenCascade6.3-32bit/lib/libTKPrim.so /opt/OpenCascade6.3-32bit/lib/libTKSTEP.so /opt/OpenCascade6.3-32bit/lib/libTKSTEPAttr.so /opt/OpenCascade6.3-32bit/lib/libTKSTEP209.so /opt/OpenCascade6.3-32bit/lib/libTKSTEPBase.so /opt/OpenCascade6.3-32bit/lib/libTKSTL.so /opt/OpenCascade6.3-32bit/lib/libTKMesh.so /opt/OpenCascade6.3-32bit/lib/libTKXSBase.so /opt/OpenCascade6.3-32bit/lib/libTKShHealing.so /opt/OpenCascade6.3-32bit/lib/libTKLCAF.so /opt/OpenCascade6.3-32bit/lib/libTKCDF.so /opt/OpenCascade6.3-32bit/lib/libTKTopAlgo.so /opt/OpenCascade6.3-32bit/lib/libTKGeomAlgo.so /op!
t/OpenCascade6.3-32bit/lib/libTKBRep.so /opt/OpenCascade6.3-32bit/lib/libTKGeomBase.so /opt/OpenCascade6.3-32bit/lib/libTKG3d.so /opt/OpenCascade6.3-32bit/lib/libTKG2d.so /opt/OpenCascade6.3-32bit/lib/libTKMath.so /opt/OpenCascade6.3-32bit/lib/libTKernel.so -lpthread -ldl -lm -Wl,--rpath -Wl,/opt/OpenCascade6.3-32bit/lib -Wl,--rpath -Wl,/opt/OpenCascade6.3-32bit/lib
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/test -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/init -I../../trunk/geom/ACIS -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/Cholla -I../../trunk/geom/OCC -I../../trunk/test -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -DSRCDIR=../../trunk/test -DHAVE_OCC -Wall -pipe -pedantic -g -m32 -MT modify.o -MD -MP -MF .deps/modify.Tpo -c -o modify.o ../../trunk/test/modify.cpp
../../trunk/test/modify.cpp: In function ‘CubitStatus make_Point()’:
../../trunk/test/modify.cpp:878: warning: unused variable ‘vt3’
mv -f .deps/modify.Tpo .deps/modify.Po
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -m32 -L/opt/OpenCascade6.3-32bit/lib -o modify modify.o ../libcgm.la -lm
c++ -Wall -pipe -pedantic -g -m32 -o modify modify.o -L/opt/OpenCascade6.3-32bit/lib ../.libs/libcgm.a /opt/OpenCascade6.3-32bit/lib/libTKFeat.so /opt/OpenCascade6.3-32bit/lib/libTKHLR.so /opt/OpenCascade6.3-32bit/lib/libTKIGES.so /opt/OpenCascade6.3-32bit/lib/libTKOffset.so /opt/OpenCascade6.3-32bit/lib/libTKFillet.so /opt/OpenCascade6.3-32bit/lib/libTKBool.so /opt/OpenCascade6.3-32bit/lib/libTKBO.so /opt/OpenCascade6.3-32bit/lib/libTKPrim.so /opt/OpenCascade6.3-32bit/lib/libTKSTEP.so /opt/OpenCascade6.3-32bit/lib/libTKSTEPAttr.so /opt/OpenCascade6.3-32bit/lib/libTKSTEP209.so /opt/OpenCascade6.3-32bit/lib/libTKSTEPBase.so /opt/OpenCascade6.3-32bit/lib/libTKSTL.so /opt/OpenCascade6.3-32bit/lib/libTKMesh.so /opt/OpenCascade6.3-32bit/lib/libTKXSBase.so /opt/OpenCascade6.3-32bit/lib/libTKShHealing.so /opt/OpenCascade6.3-32bit/lib/libTKLCAF.so /opt/OpenCascade6.3-32bit/lib/libTKCDF.so /opt/OpenCascade6.3-32bit/lib/libTKTopAlgo.so /opt/OpenCascade6.3-32bit/lib/libTKGeomAlgo.so /!
opt/OpenCascade6.3-32bit/lib/libTKBRep.so /opt/OpenCascade6.3-32bit/lib/libTKGeomBase.so /opt/OpenCascade6.3-32bit/lib/libTKG3d.so /opt/OpenCascade6.3-32bit/lib/libTKG2d.so /opt/OpenCascade6.3-32bit/lib/libTKMath.so /opt/OpenCascade6.3-32bit/lib/libTKernel.so -lpthread -ldl -lm -Wl,--rpath -Wl,/opt/OpenCascade6.3-32bit/lib -Wl,--rpath -Wl,/opt/OpenCascade6.3-32bit/lib
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/test -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/init -I../../trunk/geom/ACIS -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/Cholla -I../../trunk/geom/OCC -I../../trunk/test -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -DSRCDIR=../../trunk/test -DHAVE_OCC -Wall -pipe -pedantic -g -m32 -MT makept.o -MD -MP -MF .deps/makept.Tpo -c -o makept.o ../../trunk/test/makept.cpp
../../trunk/test/makept.cpp: In function ‘CubitStatus make_Point()’:
../../trunk/test/makept.cpp:296: warning: unused variable ‘d’
../../trunk/test/makept.cpp:213: warning: unused variable ‘is_equal’
../../trunk/test/makept.cpp:301: warning: unused variable ‘new_face2’
../../trunk/test/makept.cpp:342: warning: unused variable ‘area’
../../trunk/test/makept.cpp:381: warning: unused variable ‘pc2’
../../trunk/test/makept.cpp:385: warning: unused variable ‘num_loops’
../../trunk/test/makept.cpp:390: warning: unused variable ‘angle’
mv -f .deps/makept.Tpo .deps/makept.Po
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -m32 -L/opt/OpenCascade6.3-32bit/lib -o makept makept.o ../libcgm.la -lm
c++ -Wall -pipe -pedantic -g -m32 -o makept makept.o -L/opt/OpenCascade6.3-32bit/lib ../.libs/libcgm.a /opt/OpenCascade6.3-32bit/lib/libTKFeat.so /opt/OpenCascade6.3-32bit/lib/libTKHLR.so /opt/OpenCascade6.3-32bit/lib/libTKIGES.so /opt/OpenCascade6.3-32bit/lib/libTKOffset.so /opt/OpenCascade6.3-32bit/lib/libTKFillet.so /opt/OpenCascade6.3-32bit/lib/libTKBool.so /opt/OpenCascade6.3-32bit/lib/libTKBO.so /opt/OpenCascade6.3-32bit/lib/libTKPrim.so /opt/OpenCascade6.3-32bit/lib/libTKSTEP.so /opt/OpenCascade6.3-32bit/lib/libTKSTEPAttr.so /opt/OpenCascade6.3-32bit/lib/libTKSTEP209.so /opt/OpenCascade6.3-32bit/lib/libTKSTEPBase.so /opt/OpenCascade6.3-32bit/lib/libTKSTL.so /opt/OpenCascade6.3-32bit/lib/libTKMesh.so /opt/OpenCascade6.3-32bit/lib/libTKXSBase.so /opt/OpenCascade6.3-32bit/lib/libTKShHealing.so /opt/OpenCascade6.3-32bit/lib/libTKLCAF.so /opt/OpenCascade6.3-32bit/lib/libTKCDF.so /opt/OpenCascade6.3-32bit/lib/libTKTopAlgo.so /opt/OpenCascade6.3-32bit/lib/libTKGeomAlgo.so /!
opt/OpenCascade6.3-32bit/lib/libTKBRep.so /opt/OpenCascade6.3-32bit/lib/libTKGeomBase.so /opt/OpenCascade6.3-32bit/lib/libTKG3d.so /opt/OpenCascade6.3-32bit/lib/libTKG2d.so /opt/OpenCascade6.3-32bit/lib/libTKMath.so /opt/OpenCascade6.3-32bit/lib/libTKernel.so -lpthread -ldl -lm -Wl,--rpath -Wl,/opt/OpenCascade6.3-32bit/lib -Wl,--rpath -Wl,/opt/OpenCascade6.3-32bit/lib
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/test -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/init -I../../trunk/geom/ACIS -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/Cholla -I../../trunk/geom/OCC -I../../trunk/test -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -DSRCDIR=../../trunk/test -DHAVE_OCC -Wall -pipe -pedantic -g -m32 -MT r_w.o -MD -MP -MF .deps/r_w.Tpo -c -o r_w.o ../../trunk/test/r_w.cpp
../../trunk/test/r_w.cpp: In function ‘CubitStatus make_Point()’:
../../trunk/test/r_w.cpp:177: warning: unused variable ‘d’
../../trunk/test/r_w.cpp:179: warning: unused variable ‘n’
mv -f .deps/r_w.Tpo .deps/r_w.Po
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -m32 -L/opt/OpenCascade6.3-32bit/lib -o r_w r_w.o ../libcgm.la -lm
c++ -Wall -pipe -pedantic -g -m32 -o r_w r_w.o -L/opt/OpenCascade6.3-32bit/lib ../.libs/libcgm.a /opt/OpenCascade6.3-32bit/lib/libTKFeat.so /opt/OpenCascade6.3-32bit/lib/libTKHLR.so /opt/OpenCascade6.3-32bit/lib/libTKIGES.so /opt/OpenCascade6.3-32bit/lib/libTKOffset.so /opt/OpenCascade6.3-32bit/lib/libTKFillet.so /opt/OpenCascade6.3-32bit/lib/libTKBool.so /opt/OpenCascade6.3-32bit/lib/libTKBO.so /opt/OpenCascade6.3-32bit/lib/libTKPrim.so /opt/OpenCascade6.3-32bit/lib/libTKSTEP.so /opt/OpenCascade6.3-32bit/lib/libTKSTEPAttr.so /opt/OpenCascade6.3-32bit/lib/libTKSTEP209.so /opt/OpenCascade6.3-32bit/lib/libTKSTEPBase.so /opt/OpenCascade6.3-32bit/lib/libTKSTL.so /opt/OpenCascade6.3-32bit/lib/libTKMesh.so /opt/OpenCascade6.3-32bit/lib/libTKXSBase.so /opt/OpenCascade6.3-32bit/lib/libTKShHealing.so /opt/OpenCascade6.3-32bit/lib/libTKLCAF.so /opt/OpenCascade6.3-32bit/lib/libTKCDF.so /opt/OpenCascade6.3-32bit/lib/libTKTopAlgo.so /opt/OpenCascade6.3-32bit/lib/libTKGeomAlgo.so /opt/Op!
enCascade6.3-32bit/lib/libTKBRep.so /opt/OpenCascade6.3-32bit/lib/libTKGeomBase.so /opt/OpenCascade6.3-32bit/lib/libTKG3d.so /opt/OpenCascade6.3-32bit/lib/libTKG2d.so /opt/OpenCascade6.3-32bit/lib/libTKMath.so /opt/OpenCascade6.3-32bit/lib/libTKernel.so -lpthread -ldl -lm -Wl,--rpath -Wl,/opt/OpenCascade6.3-32bit/lib -Wl,--rpath -Wl,/opt/OpenCascade6.3-32bit/lib
c++ -DTEMPLATE_DEFS_INCLUDED -DLITTLE_ENDIAN=BYTE_ORDER -DHAVE_OCC -I. -I../../trunk/test -I.. -I../itaps -I../../trunk/geom -I../../trunk/util -I../../trunk/init -I../../trunk/geom/ACIS -I../../trunk/geom/virtual -I../../trunk/geom/facet -I../../trunk/geom/Cholla -I../../trunk/geom/OCC -I../../trunk/test -I/opt/OpenCascade6.3-32bit/inc -DHAVE_IOSTREAM -DHAVE_IOMANIP -DHAVE_FSTREAM -DHAVE_LIMITS_H -DSRCDIR=../../trunk/test -DHAVE_OCC -Wall -pipe -pedantic -g -m32 -MT test_occ.o -MD -MP -MF .deps/test_occ.Tpo -c -o test_occ.o ../../trunk/test/test_occ.cpp
mv -f .deps/test_occ.Tpo .deps/test_occ.Po
/bin/sh ../libtool --tag=CXX --mode=link c++ -Wall -pipe -pedantic -g -m32 -L/opt/OpenCascade6.3-32bit/lib -o test_occ test_occ.o ../libcgm.la -lm
c++ -Wall -pipe -pedantic -g -m32 -o test_occ test_occ.o -L/opt/OpenCascade6.3-32bit/lib ../.libs/libcgm.a /opt/OpenCascade6.3-32bit/lib/libTKFeat.so /opt/OpenCascade6.3-32bit/lib/libTKHLR.so /opt/OpenCascade6.3-32bit/lib/libTKIGES.so /opt/OpenCascade6.3-32bit/lib/libTKOffset.so /opt/OpenCascade6.3-32bit/lib/libTKFillet.so /opt/OpenCascade6.3-32bit/lib/libTKBool.so /opt/OpenCascade6.3-32bit/lib/libTKBO.so /opt/OpenCascade6.3-32bit/lib/libTKPrim.so /opt/OpenCascade6.3-32bit/lib/libTKSTEP.so /opt/OpenCascade6.3-32bit/lib/libTKSTEPAttr.so /opt/OpenCascade6.3-32bit/lib/libTKSTEP209.so /opt/OpenCascade6.3-32bit/lib/libTKSTEPBase.so /opt/OpenCascade6.3-32bit/lib/libTKSTL.so /opt/OpenCascade6.3-32bit/lib/libTKMesh.so /opt/OpenCascade6.3-32bit/lib/libTKXSBase.so /opt/OpenCascade6.3-32bit/lib/libTKShHealing.so /opt/OpenCascade6.3-32bit/lib/libTKLCAF.so /opt/OpenCascade6.3-32bit/lib/libTKCDF.so /opt/OpenCascade6.3-32bit/lib/libTKTopAlgo.so /opt/OpenCascade6.3-32bit/lib/libTKGeomAlgo.!
so /opt/OpenCascade6.3-32bit/lib/libTKBRep.so /opt/OpenCascade6.3-32bit/lib/libTKGeomBase.so /opt/OpenCascade6.3-32bit/lib/libTKG3d.so /opt/OpenCascade6.3-32bit/lib/libTKG2d.so /opt/OpenCascade6.3-32bit/lib/libTKMath.so /opt/OpenCascade6.3-32bit/lib/libTKernel.so -lpthread -ldl -lm -Wl,--rpath -Wl,/opt/OpenCascade6.3-32bit/lib -Wl,--rpath -Wl,/opt/OpenCascade6.3-32bit/lib
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/test'
make check-TESTS
make[2]: Entering directory `/home/jason/cgm/test/32-occ/test'
PASS: sheet
Modified volume
Created volume(s): 9
Destroyed volume(s): 2 to 7
Exported: 1 OCC Body
=======================================
Constructed 1 Volume: 10
=======================================
Updated volume(s): 19
Destroyed volume(s): 20
Created volume(s): 22, 23
Destroyed volume(s): 19, 21
/bin/sh: line 4: 10676 Segmentation fault /home/jason/bin/timeout 600 ${dir}$tst
FAIL: modify
=======================================
Constructed 1 Volume: 2
=======================================
=======================================
Constructed 1 Volume: 3
=======================================
=======================================
Constructed 2 Volumes: 4, 5
=======================================
Created volume(s): 6 to 9
Exported: 5 OCC Bodies
3 OCC Points
Exported: 2 OCC Bodies
3 OCC Points
PASS: makept
=======================================
Constructed 2 Volumes: 1, 2
=======================================
Exported: 2 OCC Bodies
=======================================
Constructed 2 Volumes: 3, 4
=======================================
Exported: 2 OCC Bodies
Created volume(s): 5, 6
Destroyed volume(s): 3, 4
Exported: 2 OCC Bodies
/bin/sh: line 4: 10712 Segmentation fault /home/jason/bin/timeout 600 ${dir}$tst
FAIL: r_w
Constructed 1 Volume: 1
done...
PASS: test_occ
===================
2 of 5 tests failed
===================
make[2]: *** [check-TESTS] Error 1
make[2]: Leaving directory `/home/jason/cgm/test/32-occ/test'
make[1]: *** [check-am] Error 2
make[1]: Leaving directory `/home/jason/cgm/test/32-occ/test'
make: *** [check-recursive] Error 1
1
0
Author: janehu
Date: 2008-12-03 16:32:31 -0600 (Wed, 03 Dec 2008)
New Revision: 2461
Modified:
cgm/trunk/geom/OCC/OCCQueryEngine.cpp
Log:
Fix for get graphics for surfaces.
Modified: cgm/trunk/geom/OCC/OCCQueryEngine.cpp
===================================================================
--- cgm/trunk/geom/OCC/OCCQueryEngine.cpp 2008-12-03 22:01:38 UTC (rev 2460)
+++ cgm/trunk/geom/OCC/OCCQueryEngine.cpp 2008-12-03 22:32:31 UTC (rev 2461)
@@ -304,6 +304,7 @@
//needs to test that N1, N2, N3 index are starting from 0 to number_points-1
//otherwise needs to update either facetList or gPnts to make consistent.
//It's possible also that N's starting from 1.
+ int minN = 100;
for (int i = 0; i < triangles.Length(); i++)
{
Poly_Triangle triangle = triangles.Value( i );
@@ -311,9 +312,22 @@
triangle.Get(N1, N2, N3);
facetList[4 * i] = 3;
facetList[4 * i + 1] = N1;
+ minN = (minN < N1 ? minN : N1);
facetList[4 * i + 2] = N2;
+ minN = (minN < N2 ? minN : N2);
facetList[4 * i + 3] = N3;
+ minN = (minN < N3 ? minN : N3);
}
+ if(minN != 0)
+ {
+ //subtract the minN from the facetList for all i+1, i+2, i+3 points
+ for (int i = 0; i < triangles.Length(); i++)
+ {
+ facetList[4 * i + 1] -= minN;
+ facetList[4 * i + 2] -= minN;
+ facetList[4 * i + 3] -= minN;
+ }
+ }
g_mem->replace_facet_list( facetList, number_facets, number_facets);
TColgp_Array1OfPnt points(0, number_points-1);
1
0