00001 # -*- coding: iso-8859-1 -*- 00002 # Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE 00003 # 00004 # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, 00005 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 00006 # 00007 # This library is free software; you can redistribute it and/or 00008 # modify it under the terms of the GNU Lesser General Public 00009 # License as published by the Free Software Foundation; either 00010 # version 2.1 of the License. 00011 # 00012 # This library is distributed in the hope that it will be useful, 00013 # but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 # Lesser General Public License for more details. 00016 # 00017 # You should have received a copy of the GNU Lesser General Public 00018 # License along with this library; if not, write to the Free Software 00019 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00020 # 00021 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com 00022 # 00023 00024 # SMESH SMESH_SWIG : binding of C++ implementaion with Python 00025 # File : SMESH_blocks.py 00026 # Author : Julia DOROVSKIKH 00027 # Module : SMESH 00028 # $Header: /home/server/cvs/SMESH/SMESH_SRC/src/SMESH_SWIG/SMESH_blocks.py,v 1.7.2.3.6.1.8.1 2011-06-02 05:57:30 vsr Exp $ 00029 # 00030 import salome 00031 import geompy 00032 import math 00033 import smesh 00034 00035 import GEOM_Spanner 00036 00037 isBlocksTest = 0 # False 00038 isMeshTest = 1 # True 00039 00040 smesh.SetCurrentStudy(salome.myStudy) 00041 00042 GEOM_Spanner.MakeSpanner(geompy, math, isBlocksTest, isMeshTest, smesh) 00043 00044 salome.sg.updateObjBrowser(1);