Salome HOME
Copyright update 2021
[modules/smesh.git] / src / Tools / blocFissure / gmu / extractionOrienteeMulti.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
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 .whichSideMulti import whichSideMulti
28
29 # -----------------------------------------------------------------------------
30 # --- renvoie l'extraction des shapes d'un objet selon leur position par rapport à la face.
31
32 def extractionOrienteeMulti(faces, ifil, obj, centre, shapeType, tol, prefix=""):
33   """
34   renvoie l'extraction des shapes d'un objet selon leur position
35   par rapport aux faces.
36   shapeType in ["VERTEX", "EDGE", "FACE",...]
37   """
38   logging.info('start')
39   trace = True
40   shapesInside = []
41   shapesOutside = []
42   shapesOnside = []
43   shapes = geompy.ExtractShapes(obj, geompy.ShapeType[shapeType], False)
44   i=0
45   j=0
46   k=0
47   prefix = prefix + shapeType
48   for shape in shapes:
49     side = whichSideMulti(faces, ifil, shape, centre, tol)
50     if side == 1:
51       shapesInside.append(shape)
52       if trace:
53         name = prefix + "_Inside%d"%i
54         geomPublishInFather(initLog.debug, obj, shape, name)
55       i+=1
56     elif side == -1:
57       shapesOutside.append(shape)
58       if trace:
59         name = prefix + "_Outside%d"%j
60         geomPublishInFather(initLog.debug, obj, shape, name)
61       j+=1
62     elif side == 0:
63       shapesOnside.append(shape)
64       if trace:
65         name = prefix + "_Onside%d"%k
66         geomPublishInFather(initLog.debug, obj, shape, name)
67       k+=1
68     logging.debug("--- shape was %s", name)
69   return [shapesInside, shapesOutside, shapesOnside]
70