Salome HOME
simplification
[modules/smesh.git] / src / Tools / blocFissure / gmu / checkDecoupePartition.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 """Teste si l'opération de partition a produit une modification"""
21
22 import logging
23 from .geomsmesh import geompy
24
25
26 def checkDecoupePartition(shapes, part):
27   """Teste si l'opération de partition a produit une découpe (plus de shapes dans la partition).
28
29   Résultat non garanti si recouvrement des shapes d'origine.
30   @param shapes : liste des shapes d'origine
31   @param part : résultat de la partition
32   @return True si la partition a découpé les shapes d'origine
33   """
34   logging.info('start')
35   # TODO: ShapeInfo donne des résultats faux (deux faces au lieu de une)
36
37   orig = dict()
38   for shape in shapes:
39     info = geompy.ShapeInfo(shape)
40     logging.debug("shape info %s", info)
41     for type_shape in ['VERTEX', 'EDGE', 'FACE', 'SOLID']:
42       if type_shape in orig:
43         orig[type_shape] += info[type_shape]
44       else:
45         orig[type_shape] = info[type_shape]
46   logging.debug("original shapes info %s", orig)
47
48   info = geompy.ShapeInfo(part)
49   logging.debug("partition info %s", info)
50   decoupe = False
51   for type_shape in ['VERTEX', 'EDGE', 'FACE', 'SOLID']:
52     if orig[type_shape] < info[type_shape]:
53       decoupe = True
54       break
55   logging.debug("partition modifie l'original %s", decoupe)
56
57   return decoupe