X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FTools%2FblocFissure%2Fgmu%2FpropagateTore.py;h=b32dae57cbfbb6541ab8cfbedcf93504df2038d5;hb=09eeca0267acf6f14581efdd342e8b7a87d09cf0;hp=70678a420b83597dd3e6b93411d58da5932d7d88;hpb=5d68554076bbca0e1e95fb0db215a6c2b84b6c54;p=modules%2Fsmesh.git diff --git a/src/Tools/blocFissure/gmu/propagateTore.py b/src/Tools/blocFissure/gmu/propagateTore.py index 70678a420..b32dae57c 100644 --- a/src/Tools/blocFissure/gmu/propagateTore.py +++ b/src/Tools/blocFissure/gmu/propagateTore.py @@ -1,7 +1,28 @@ # -*- coding: utf-8 -*- +# Copyright (C) 2014-2020 EDF R&D +# +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +# import logging -from geomsmesh import geompy +from .geomsmesh import geompy +from .geomsmesh import geomPublish +from .geomsmesh import geomPublishInFather +from . import initLog # ----------------------------------------------------------------------------- # --- recherche et classement des edges du tore par propagate @@ -18,7 +39,7 @@ def propagateTore(tore): lencomp = [] compounds = geompy.Propagate(tore) for i in range(len(compounds)): - #geompy.addToStudyInFather( tore, compounds[i], 'edges' ) + #geomPublishInFather(initLog.debug, tore, compounds[i], 'edges' ) props = geompy.BasicProperties(compounds[i]) lencomp.append(props[0]) pass @@ -35,10 +56,10 @@ def propagateTore(tore): else: circles.append(compounds[i]) - geompy.addToStudyInFather( tore, diams[0], 'diams0' ) - geompy.addToStudyInFather( tore, diams[1], 'diams1' ) - geompy.addToStudyInFather( tore, circles[0], 'circles0' ) - geompy.addToStudyInFather( tore, circles[1], 'circles1' ) - geompy.addToStudyInFather( tore, geners[0], 'geners' ) + geomPublishInFather(initLog.debug, tore, diams[0], 'diams0' ) + geomPublishInFather(initLog.debug, tore, diams[1], 'diams1' ) + geomPublishInFather(initLog.debug, tore, circles[0], 'circles0' ) + geomPublishInFather(initLog.debug, tore, circles[1], 'circles1' ) + geomPublishInFather(initLog.debug, tore, geners[0], 'geners' ) return diams, circles, geners