From 117b9c5151da06f4f51cc7657062c4432157cef3 Mon Sep 17 00:00:00 2001 From: vsr Date: Mon, 18 Feb 2013 12:54:40 +0000 Subject: [PATCH] Fix pb with 'make installcheck' --- doc/salome/examples/repairing_operations_ex05.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/salome/examples/repairing_operations_ex05.py b/doc/salome/examples/repairing_operations_ex05.py index 280499177..b7534ab65 100644 --- a/doc/salome/examples/repairing_operations_ex05.py +++ b/doc/salome/examples/repairing_operations_ex05.py @@ -2,6 +2,7 @@ import geompy import salome +import GEOM gg = salome.ImportComponentGUI("GEOM") # create a vertex and a vector @@ -21,7 +22,6 @@ cone = geompy.MakeCone(p1, v, 70, 0, 80) cut = geompy.MakeCut(cone, cylinder) # get faces as sub-shapes -faces = [] faces = geompy.SubShapeAllSortedCentres(cut, geompy.ShapeType["FACE"]) f_2 = geompy.GetSubShapeID(cut, faces[2]) @@ -29,9 +29,9 @@ f_2 = geompy.GetSubShapeID(cut, faces[2]) cut_without_f_2 = geompy.SuppressFaces(cut, [f_2]) # get edges as sub-shapes -edges = [] -edges = geompy.SubShapeAllSortedCentres(cut_without_f_2, geompy.ShapeType["EDGE"]) -e_2 = geompy.GetSubShapeID(cut_without_f_2, edges[2]) +edges = geompy.SubShapeAllSortedCentres(faces[2], geompy.ShapeType["EDGE"]) +edge = geompy.GetInPlace(cut_without_f_2, edges[0], True) +e_2 = geompy.GetSubShapeID(cut_without_f_2, edge) # suppress a hole using the selected edge result = geompy.SuppressHoles(cut_without_f_2, [e_2]) -- 2.39.2