X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FTools%2FblocFissure%2Fgmu%2FshapesSurFissure.py;h=db5fd702cb2ee9844b6f7572d43f48863aa9c478;hb=caba16c69d5765610810c22df363d31fb4a35bae;hp=9c975c41bb55bc8978cd4b675a6a104d95c6040a;hpb=8a9d91b414c3f26586dea735c22c7700898a0a1e;p=modules%2Fsmesh.git diff --git a/src/Tools/blocFissure/gmu/shapesSurFissure.py b/src/Tools/blocFissure/gmu/shapesSurFissure.py index 9c975c41b..db5fd702c 100644 --- a/src/Tools/blocFissure/gmu/shapesSurFissure.py +++ b/src/Tools/blocFissure/gmu/shapesSurFissure.py @@ -1,40 +1,56 @@ # -*- coding: utf-8 -*- +# Copyright (C) 2014-2021 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 +# +"""Identification des shapes modifiées par la duplication des noeuds de la face fissure (d'un coté de la face)""" import logging -from .geomsmesh import geompy -# ----------------------------------------------------------------------------- -# --- identification des shapes modifiées par la duplication des noeuds de la face fissure (d'un coté de la face) +import GEOM + +from .geomsmesh import geompy def shapesSurFissure(blocPartition, plane1, faceFissure, gencnt): - """ - TODO: a completer - """ + """Identification des shapes modifiées par la duplication des noeuds de la face fissure (d'un coté de la face)""" + logging.info('start') - shapesAModifier = [] vertex = geompy.MakeVertexOnSurface(plane1, 0.5, 0.5) normal = geompy.GetNormal(plane1, vertex) extrusion = geompy.MakePrismVecH(plane1, normal, 100) - sharedSolids = [] + sharedSolids = list() solids= geompy.GetShapesOnBox ( extrusion, blocPartition, geompy.ShapeType("SOLID"), GEOM.ST_ONIN ) for solid in solids: sharedSolids += geompy.GetSharedShapes(faceFissure, solid, geompy.ShapeType["SOLID"]) logging.debug("sharedSolids %s",sharedSolids) - sharedFaces = [] + sharedFaces = list() faces= geompy.GetShapesOnBox ( extrusion, blocPartition, geompy.ShapeType("FACE"), GEOM.ST_ONIN ) for face in faces: sharedFaces += geompy.GetSharedShapes(faceFissure, face, geompy.ShapeType["FACE"]) logging.debug("sharedFaces %s",sharedFaces) - sharedEdges = [] + sharedEdges = list() edges= geompy.GetShapesOnBox ( extrusion, blocPartition, geompy.ShapeType("EDGE"), GEOM.ST_ONIN ) for edge in edges: if not edge.IsSame(gencnt): sharedEdges += geompy.GetSharedShapes(faceFissure, edge, geompy.ShapeType["EDGE"]) logging.debug("sharedEdges %s",sharedEdges) - shapesAModifier = [ sharedSolids, sharedFaces, sharedEdges] - return shapesAModifier + return [ sharedSolids, sharedFaces, sharedEdges ]