X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FTest%2FTestBooleanCompSolids.py;h=0206b149691524b9ff71aa25211f49e2ec62ceec;hb=fc72d43b677baa05ae7fd317346fd8b723b799ed;hp=8d997e60ecb747a8516bf6445d8e63da72d433b4;hpb=cb3b1befb8fa7b3067d9263f94391108429d691a;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/Test/TestBooleanCompSolids.py b/src/FeaturesPlugin/Test/TestBooleanCompSolids.py index 8d997e60e..0206b1496 100644 --- a/src/FeaturesPlugin/Test/TestBooleanCompSolids.py +++ b/src/FeaturesPlugin/Test/TestBooleanCompSolids.py @@ -1,3 +1,22 @@ +# Copyright (C) 2014-2023 CEA/DEN, EDF R&D +# +# 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, 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 +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +# + #========================================================================= # Initialization of the test #========================================================================= @@ -27,8 +46,8 @@ norm = geomDataAPI_Dir(aCircleSketchFeature.attribute("Norm")) norm.setValue(0, 0, 1) aSketchCircle = aCircleSketchFeature.addFeature("SketchCircle") -aCircleCentr = geomDataAPI_Point2D(aSketchCircle.attribute("CircleCenter")) -aCircleRadius = aSketchCircle.real("CircleRadius") +aCircleCentr = geomDataAPI_Point2D(aSketchCircle.attribute("circle_center")) +aCircleRadius = aSketchCircle.real("circle_radius") aCircleCentr.setValue(0, 0) aCircleRadius.setValue(50) @@ -73,14 +92,7 @@ aSession.startOperation() extrudedObjects = [] for eachSketchFeature in [aCircleSketchFeature, aTriangleSketchFeature]: # Build sketch faces - aSketchResult = eachSketchFeature.firstResult() - aSketchEdges = modelAPI_ResultConstruction(aSketchResult).shape() - origin = geomDataAPI_Point(eachSketchFeature.attribute("Origin")).pnt() - dirX = geomDataAPI_Dir(eachSketchFeature.attribute("DirX")).dir() - norm = geomDataAPI_Dir(eachSketchFeature.attribute("Norm")).dir() - aSketchFaces = ShapeList() - GeomAlgoAPI_SketchBuilder.createFaces( - origin, dirX, norm, aSketchEdges, aSketchFaces) + aSketchResult = modelAPI_ResultConstruction(eachSketchFeature.firstResult()) # Create extrusion on them anExtrusionFt = aPart.addFeature("Extrusion") anExtrusionFt.selectionList("base").append( @@ -97,11 +109,9 @@ aSession.finishOperation() # Create a pacman as boolean cut of the prism from the cylinder #========================================================================= aSession.startOperation() -aBooleanFt = aPart.addFeature("Boolean") -aBooleanFt.selectionList("main_objects").append(modelAPI_ResultCompSolid(extrudedObjects[0]).subResult(1), None) +aBooleanFt = aPart.addFeature("Cut") +aBooleanFt.selectionList("main_objects").append(extrudedObjects[0].subResult(1), None) aBooleanFt.selectionList("tool_objects").append(extrudedObjects[1], None) -aBooleanType = 0 -aBooleanFt.integer("bool_type").setValue(aBooleanType) aBooleanFt.execute() aSession.finishOperation() @@ -114,11 +124,11 @@ aSession.undo() # Fuse #========================================================================= aSession.startOperation() -aBooleanFt = aPart.addFeature("Boolean") -aBooleanFt.selectionList("main_objects").append(modelAPI_ResultCompSolid(extrudedObjects[0]).subResult(1), None) +aBooleanFt = aPart.addFeature("Fuse") +aBooleanFt.string("creation_method").setValue("advanced") +aBooleanFt.selectionList("main_objects").append(extrudedObjects[0].subResult(1), None) aBooleanFt.selectionList("tool_objects").append(extrudedObjects[1], None) -aBooleanType = 1 -aBooleanFt.integer("bool_type").setValue(aBooleanType) +aBooleanFt.boolean("remove_intersection_edges").setValue(False) aBooleanFt.execute() aSession.finishOperation() @@ -129,5 +139,5 @@ assert (aBooleanResult is not None) # End of test #========================================================================= -import model +from salome.shaper import model assert(model.checkPythonDump())