Salome HOME
Copyright update 2022
[modules/smesh.git] / src / Tools / blocFissure / gmu / construitFissureGenerale_a.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 """construction de la fissure générale - le point interne"""
21
22 import logging
23
24 # -----------------------------------------------------------------------------
25
26 def construitFissureGenerale_a (geompy, shapeFissureParams):
27   """construction de la fissure générale - le point interne"""
28   logging.info('start')
29
30   point_in_x = 0.0
31   point_in_y = 0.0
32   point_in_z = 0.0
33   is_point_interne = False
34   if 'pointIn_x' in shapeFissureParams:
35     point_in_x = shapeFissureParams['pointIn_x']
36     is_point_interne = True
37   if 'pointIn_y' in shapeFissureParams:
38     point_in_y = shapeFissureParams['pointIn_y']
39     is_point_interne = True
40   if 'pointIn_z' in shapeFissureParams:
41     point_in_z = shapeFissureParams['pointIn_z']
42     is_point_interne = True
43
44   if is_point_interne:
45     pointInterne = geompy.MakeVertex(point_in_x, point_in_y, point_in_z)
46   else:
47     pointInterne = None
48
49   return pointInterne