Salome HOME
Update of CheckDone
[modules/smesh.git] / src / Tools / blocFissure / gmu / extractionOrientee.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2014-2021  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 face"""
21
22 import logging
23
24 from .geomsmesh import geompy
25
26 from .whichSide import whichSide
27 from .extractionOrientee_a import extractionOrientee_a
28
29 def extractionOrientee(face, obj, ref, shapeType, tol, prefix=""):
30   """
31   renvoie l'extraction des shapes d'un objet selon leur position
32   par rapport à la face.
33   shapeType in ["VERTEX", "EDGE", "FACE",...]
34   """
35   logging.info('start')
36   trace = True
37   side_ref = whichSide(face, ref)
38   logging.debug("ref side %s", side_ref)
39   shapesInside = list()
40   shapesOutside = list()
41   shapesOnside = list()
42   shapes = geompy.ExtractShapes(obj, geompy.ShapeType[shapeType], False)
43
44   i_aux = 0
45   j_aux = 0
46   k_aux = 0
47   prefix = prefix + shapeType
48   for shape in shapes:
49     side = whichSide(face, shape, tol)
50     i_aux, j_aux, k_aux = extractionOrientee_a(obj, shape, side, side_ref, \
51                                                shapesInside, shapesOutside, shapesOnside, \
52                                                i_aux, j_aux, k_aux, \
53                                                trace, prefix)
54
55   return [shapesInside, shapesOutside, shapesOnside]