Salome HOME
Update copyrights
[modules/smesh.git] / src / Tools / blocFissure / gmu / extractionOrientee.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2014-2019  CEA/DEN, 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
21 import logging
22 from .geomsmesh import geompy
23 from .geomsmesh import geomPublish
24 from .geomsmesh import geomPublishInFather
25 from . import initLog
26
27 from .whichSide import whichSide
28
29 # -----------------------------------------------------------------------------
30 # --- renvoie l'extraction des shapes d'un objet selon leur position par rapport à la face.
31
32 def extractionOrientee(face, obj, ref, shapeType, tol, prefix=""):
33   """
34   renvoie l'extraction des shapes d'un objet selon leur position
35   par rapport à la face.
36   shapeType in ["VERTEX", "EDGE", "FACE",...]
37   """
38   logging.info('start')
39   trace = True
40   sideRef = whichSide(face, ref)
41   logging.debug("ref side %s", sideRef)
42   shapesInside = []
43   shapesOutside = []
44   shapesOnside = []
45   shapes = geompy.ExtractShapes(obj, geompy.ShapeType[shapeType], False)
46   i=0
47   j=0
48   k=0
49   prefix = prefix + shapeType
50   for shape in shapes:
51     side = whichSide(face, shape, tol)
52     if side == sideRef:
53       shapesInside.append(shape)
54       if trace:
55         name = prefix + "_Inside%d"%i
56         geomPublishInFather(initLog.debug, obj, shape, name)
57       i+=1
58     elif side == -sideRef:
59       shapesOutside.append(shape)
60       if trace:
61         name = prefix + "_Outside%d"%j
62         geomPublishInFather(initLog.debug, obj, shape, name)
63       j+=1
64     elif side == 0:
65       shapesOnside.append(shape)
66       if trace:
67         name = prefix + "_Onside%d"%k
68         geomPublishInFather(initLog.debug, obj, shape, name)
69       k+=1
70     logging.debug("--- shape was %s", name)
71   return [shapesInside, shapesOutside, shapesOnside]
72