Salome HOME
Merge branch 'V9_9_BR'
[modules/smesh.git] / src / Tools / blocFissure / gmu / extractionOrienteeMulti.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 """Renvoie l'extraction des shapes d'un objet selon leur position par rapport à la fac"""
21
22 import logging
23
24 from .geomsmesh import geompy
25
26 from .whichSideMulti import whichSideMulti
27 from .extractionOrientee_a import extractionOrientee_a
28
29 def extractionOrienteeMulti(faces, ifil, obj, centre, shapeType, tol, prefix=""):
30   """
31   renvoie l'extraction des shapes d'un objet selon leur position
32   par rapport aux faces.
33   shapeType in ["VERTEX", "EDGE", "FACE",...]
34   """
35   logging.info('start')
36   trace = True
37   shapesInside = list()
38   shapesOutside = list()
39   shapesOnside = list()
40   shapes = geompy.ExtractShapes(obj, geompy.ShapeType[shapeType], False)
41
42   i_aux = 0
43   j_aux = 0
44   k_aux = 0
45   prefix = prefix + shapeType
46   for shape in shapes:
47     side = whichSideMulti(faces, ifil, shape, centre, tol)
48     i_aux, j_aux, k_aux = extractionOrientee_a(obj, shape, side, 1, \
49                                                shapesInside, shapesOutside, shapesOnside, \
50                                                i_aux, j_aux, k_aux, \
51                                                trace, prefix)
52
53   return [shapesInside, shapesOutside, shapesOnside]