X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FFeaturesPlugin%2FTest%2FTestPlacement.py;h=f61759df4474f2e3ccc1e1cff7cd828f10415b19;hb=84ff9a5e90ebf75292b9ef97a05a4609e67c4022;hp=24619f2173e747a6fa6d278d8d3e81e1a3ec771a;hpb=d34842c50d5f335cca443c78910c16c54139c7d0;p=modules%2Fshaper.git diff --git a/src/FeaturesPlugin/Test/TestPlacement.py b/src/FeaturesPlugin/Test/TestPlacement.py index 24619f217..f61759df4 100644 --- a/src/FeaturesPlugin/Test/TestPlacement.py +++ b/src/FeaturesPlugin/Test/TestPlacement.py @@ -1,3 +1,23 @@ +## Copyright (C) 2014-2017 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 #========================================================================= @@ -75,22 +95,14 @@ aSession.finishOperation() #========================================================================= # Make extrusion #========================================================================= -aSketchResult = aSketchFeature.firstResult() -aSketchEdges = modelAPI_ResultConstruction(aSketchResult).shape() -origin = geomDataAPI_Point(aSketchFeature.attribute("Origin")).pnt() -dirX = geomDataAPI_Dir(aSketchFeature.attribute("DirX")).dir() -norm = geomDataAPI_Dir(aSketchFeature.attribute("Norm")).dir() -aSketchFaces = ShapeList() -GeomAlgoAPI_SketchBuilder.createFaces(origin, dirX, norm, aSketchEdges, aSketchFaces) -assert (len(aSketchFaces) > 0) -assert (aSketchFaces[0] is not None) -assert (aSketchFaces[1] is not None) +aSketchResult = modelAPI_ResultConstruction(aSketchFeature.firstResult()) +assert (aSketchResult.facesNum() > 1) aSession.startOperation() anExtrusionFt = aPart.addFeature("Extrusion") assert (anExtrusionFt.getKind() == "Extrusion") -anExtrusionFt.selectionList("base").append(aSketchResult, aSketchFaces[0]) -anExtrusionFt.selectionList("base").append(aSketchResult, aSketchFaces[1]) +anExtrusionFt.selectionList("base").append(aSketchResult, aSketchResult.face(0)) +anExtrusionFt.selectionList("base").append(aSketchResult, aSketchResult.face(1)) anExtrusionFt.string("CreationMethod").setValue("BySizes") anExtrusionFt.real("to_size").setValue(50) anExtrusionFt.real("from_size").setValue(0) @@ -218,5 +230,5 @@ assert (len(aPlacementFt.results()) > 0) aPlacementResult = modelAPI_ResultBody(aPlacementFt.firstResult()) assert (aPlacementResult is not None) -import model +from salome.shaper import model assert(model.checkPythonDump())