Salome HOME
Copyright update 2022
[modules/smesh.git] / src / Tools / blocFissure / gmu / geomsmesh.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2014-2022  EDF R&D
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 """Publications dans salome"""
21
22 import salome
23 salome.salome_init()
24
25 from salome.geom import geomBuilder
26 geompy = geomBuilder.New()
27
28 from salome.smesh import smeshBuilder
29 smesh = smeshBuilder.New()
30
31 from . import initLog
32
33 def geomPublish(level,aShape, aName, i_pref=None):
34   """Publication d'un objet sous GEOM
35
36   @level niveau d'impression voulu
37   @aShape objet à nommer
38   @aName le nom brut
39   @i_pref un éventuel préfixe
40   """
41   #print ("initLog.getLogLevel() = {}".format(initLog.getLogLevel()))
42   #print ("level                 = {}".format(level))
43   if initLog.getLogLevel() <= level:
44     # préfixe éventuel :
45     if ( i_pref is not None):
46       if isinstance(i_pref,int):
47         prefixe = "Cas{:02d}_".format(i_pref)
48       else:
49         prefixe = "{}_".format(i_pref)
50       aName = prefixe + aName
51
52     geompy.addToStudy(aShape, aName)
53
54 def geomPublishInFather(level, aFather, aShape, aName, i_pref=None):
55   """Publication d'un objet sous son ascendant sous GEOM
56
57   @level niveau d'impression voulu
58   @aFather objet ascendant
59   @aShape objet à nommer
60   @aName le nom brut
61   @i_pref un éventuel préfixe
62   """
63   if initLog.getLogLevel() <= level:
64     # préfixe éventuel :
65     if ( i_pref is not None):
66       if isinstance(i_pref,int):
67         prefixe = "Cas{:02d}_".format(i_pref)
68       else:
69         prefixe = "{}_".format(i_pref)
70       aName = prefixe + aName
71
72     geompy.addToStudyInFather(aFather, aShape, aName)