]> SALOME platform Git repositories - modules/geom.git/blob - src/IGESExport/IGESExport.cxx
Salome HOME
Bug 0020233: Infinite loop in boolean operation with a sphere with r=0
[modules/geom.git] / src / IGESExport / IGESExport.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File:        IGESExport.cxx
23 // Created:     Wed May 19 14:49:45 2004
24 // Author:      Pavel TELKOV
25 //              <ptv@mutex.nnov.opencascade.com>
26 //
27 #include "utilities.h"
28
29 #include <IGESControl_Controller.hxx>
30 #include <IGESControl_Writer.hxx>
31 #include <Interface_Static.hxx>
32
33 #include <TCollection_AsciiString.hxx>
34 #include <TopoDS_Shape.hxx>
35
36 #ifdef WIN32
37 # ifdef IGESEXPORT_EXPORTS
38 #  define IGESEXPORT_EXPORT __declspec( dllexport )
39 # else
40 #  define IGESEXPORT_EXPORT __declspec( dllimport )
41 # endif
42 #else
43 # define IGESEXPORT_EXPORT
44 #endif
45
46 //=============================================================================
47 /*!
48  *
49  */
50 //=============================================================================
51
52 extern "C"
53 {
54 IGESEXPORT_EXPORT
55   int Export( const TopoDS_Shape& theShape,
56               const TCollection_AsciiString& theFileName,
57               const TCollection_AsciiString& theFormatName )
58   {
59     MESSAGE("Export IGES into file " << theFileName.ToCString());
60     try
61     {
62       // define, whether to write only faces (5.1 IGES format)
63       // or shells and solids also (5.3 IGES format)
64       int aBrepMode = 0;
65       if (theFormatName.IsEqual("IGES_5_3"))
66         aBrepMode = 1;
67
68       // initialize writer
69       IGESControl_Controller::Init();
70       //IGESControl_Writer ICW (Interface_Static::CVal("write.iges.unit"),
71       //                        Interface_Static::IVal("write.iges.brep.mode"));
72       IGESControl_Writer ICW (Interface_Static::CVal("write.iges.unit"), aBrepMode);
73
74       // perform shape writing
75       ICW.AddShape( theShape );
76       ICW.ComputeModel();
77       if ( ICW.Write( theFileName.ToCString() ) )
78         return 1;
79     }
80     catch(Standard_Failure)
81     {
82       //THROW_SALOME_CORBA_EXCEPTION("Exception catched in IGESExport", SALOME::BAD_PARAM);
83     }
84     return 0;
85   }
86 }