X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=doc%2Fsalome%2Fgui%2FSMESH%2Finput%2Ftui_defining_blsurf_hypotheses.doc;h=3faba3da55459025e19e5b19e8b6d33a7eb4a50f;hb=8a5f517e60c56d7ddbd35cfae74d69bac8edd36d;hp=edad0dbe7cae75586f9ccbd37756ada06cd1a8a9;hpb=71ee0d41473f924ed618a9ae16a3333966c3c680;p=modules%2Fsmesh.git diff --git a/doc/salome/gui/SMESH/input/tui_defining_blsurf_hypotheses.doc b/doc/salome/gui/SMESH/input/tui_defining_blsurf_hypotheses.doc index edad0dbe7..3faba3da5 100644 --- a/doc/salome/gui/SMESH/input/tui_defining_blsurf_hypotheses.doc +++ b/doc/salome/gui/SMESH/input/tui_defining_blsurf_hypotheses.doc @@ -19,6 +19,11 @@ Face_1 = geompy.SubShapeAllSorted(box, geompy.ShapeType["FACE"])[0] Edge_1 = geompy.SubShapeAllSorted(box, geompy.ShapeType["EDGE"])[0] Vertex_1 = geompy.SubShapeAllSorted(box, geompy.ShapeType["VERTEX"])[0] +# /!\ Geom object with sizemaps on them must be published in study +geompy.addToStudyInFather(box,Face_1, "Face_1") +geompy.addToStudyInFather(box,Edge_1, "Edge_1") +geompy.addToStudyInFather(box,Vertex_1, "Vertex_1") + # create a mesh on the box blsurfMesh = smesh.Mesh(box,"box: BLSurf mesh")