Salome HOME
f87352fe2e0bf3b4d443244abbc6fc4e3add5dd3
[modules/geom.git] / src / GEOM_SWIG / VTKPluginBuilder.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2014-2023  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 from GEOM import IVTKOperations
22
23 # Engine Library Name
24 __libraryName__ = "VTKPluginEngine"
25
26 def GetVTKPluginOperations(self):
27     anOp = self.GetPluginOperations(__libraryName__)
28     return anOp._narrow(IVTKOperations)
29
30 ## Export the given shape into a file with given name in VTK format.
31 #  @param theObject Shape to be stored in the file.
32 #  @param theFileName Name of the file to store the given shape in.
33 #  @param theDeflection Deflection of the given shape.
34 #  @ingroup l2_import_export
35 def ExportVTK(self, theObject, theFileName, theDeflection=0.001):
36     """
37     Export the given shape into a file with given name in VTK format.
38
39     Parameters: 
40         theObject Shape to be stored in the file.
41         theFileName Name of the file to store the given shape in.
42         theIsASCII The format of the exported file (ASCII or Binary).
43         theDeflection Deflection of the given shape.
44     """
45     anOp = GetVTKPluginOperations(self)
46     anOp.ExportVTK(theObject, theFileName, theDeflection)
47     if anOp.IsDone() == 0:
48         raise RuntimeError("Export : " + anOp.GetErrorCode())
49         pass
50     pass