X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSMESH_SWIG%2Fex07_hole1partition.py;h=c6f1a607fbea320b4f72c0b784f23570d52e4c39;hb=df9cc07c95bbe75654ed43634939a133ccebe2f6;hp=84a4326d6046aac3f81b0c21bb5af4ef4d67d6fc;hpb=bd4e115a78b52e3fbc016e5e30bb0e19b2a9e7d6;p=modules%2Fsmesh.git diff --git a/src/SMESH_SWIG/ex07_hole1partition.py b/src/SMESH_SWIG/ex07_hole1partition.py index 84a4326d6..c6f1a607f 100644 --- a/src/SMESH_SWIG/ex07_hole1partition.py +++ b/src/SMESH_SWIG/ex07_hole1partition.py @@ -1,5 +1,5 @@ # -*- coding: iso-8859-1 -*- -# Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE +# Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE # # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -7,7 +7,7 @@ # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either -# version 2.1 of the License. +# version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -23,9 +23,15 @@ # ======================================= # -from geompy import * +import salome +salome.salome_init() +import GEOM +from salome.geom import geomBuilder +geompy = geomBuilder.New(salome.myStudy) -import smesh +import SMESH, SALOMEDS +from salome.smesh import smeshBuilder +smesh = smeshBuilder.New(salome.myStudy) # Geometry # ======== @@ -50,41 +56,39 @@ g_trim = 1000 # Box # --- -b_boite = MakeBox(g_x-g_longueur, g_y-g_hauteur, g_z-g_largeur, g_x+g_longueur, g_y+g_hauteur, g_z+g_largeur) +b_boite = geompy.MakeBox(g_x-g_longueur, g_y-g_hauteur, g_z-g_largeur, g_x+g_longueur, g_y+g_hauteur, g_z+g_largeur) # Cylinder # -------- -c_axe = MakeVectorDXDYDZ(0, 1, 0) +c_axe = geompy.MakeVectorDXDYDZ(0, 1, 0) -c_cyl = MakeCylinder(MakeVertex(g_x, g_y-g_hauteur, g_z), c_axe, g_rayon, g_hauteur*2) +c_cyl = geompy.MakeCylinder(geompy.MakeVertex(g_x, g_y-g_hauteur, g_z), c_axe, g_rayon, g_hauteur*2) -c_piece = MakeCut(b_boite, c_cyl) +c_piece = geompy.MakeCut(b_boite, c_cyl) # Partition and reperation # ------------------------ -p_centre = MakeVertex(g_x, g_y, g_z) +p_centre = geompy.MakeVertex(g_x, g_y, g_z) p_tools = [] -p_tools.append(MakePlane(p_centre, MakeVectorDXDYDZ( g_largeur, 0, g_longueur), g_trim)) -p_tools.append(MakePlane(p_centre, MakeVectorDXDYDZ(-g_largeur, 0, g_longueur), g_trim)) +p_tools.append(geompy.MakePlane(p_centre, geompy.MakeVectorDXDYDZ( g_largeur, 0, g_longueur), g_trim)) +p_tools.append(geompy.MakePlane(p_centre, geompy.MakeVectorDXDYDZ(-g_largeur, 0, g_longueur), g_trim)) -p_part = MakePartition([c_piece], p_tools, [], [], ShapeType["SOLID"]) +p_part = geompy.MakePartition([c_piece], p_tools, [], [], geompy.ShapeType["SOLID"]) -p_blocs = RemoveExtraEdges(p_part, doUnionFaces=True) -piece = MakeGlueFaces(p_blocs, 1.e-5) +p_blocs = geompy.RemoveExtraEdges(p_part, doUnionFaces=True) +piece = geompy.MakeGlueFaces(p_blocs, 1.e-5) # Add in study # ------------ -piece_id = addToStudy(piece, "ex07_hole1partition") +piece_id = geompy.addToStudy(piece, "ex07_hole1partition") # Meshing # ======= -smesh.SetCurrentStudy(salome.myStudy) - # Create a hexahedral mesh # ------------------------ @@ -101,3 +105,8 @@ hexa.Hexahedron() # ------------- hexa.Compute() + +# Update object browser +# --------------------- + +salome.sg.updateObjBrowser(1)