Variables | |
| tuple | myBuilder = salome.myStudy.NewBuilder() |
| tuple | box = geompy.MakeBox(0., 0., 0., 100., 200., 300.) |
| tuple | idbox = geompy.addToStudy(box, "box") |
| tuple | subShapeList = geompy.SubShapeAll(box, geompy.ShapeType["FACE"]) |
| list | face = subShapeList[0] |
| tuple | name = geompy.SubShapeName(face, box) |
| tuple | idface = geompy.addToStudyInFather(box, face, name) |
| tuple | subShellList = geompy.SubShapeAll(box, geompy.ShapeType["SHELL"]) |
| list | shell = subShellList[0] |
| tuple | idshell = geompy.addToStudyInFather(box, shell, name) |
| tuple | edgeList = geompy.SubShapeAll(face, geompy.ShapeType["EDGE"]) |
| list | edge = edgeList[0] |
| tuple | idedge = geompy.addToStudyInFather(face, edge, name) |
| tuple SMESH_test0.box = geompy.MakeBox(0., 0., 0., 100., 200., 300.) |
Definition at line 36 of file SMESH_test0.py.
| list SMESH_test0.edge = edgeList[0] |
Definition at line 58 of file SMESH_test0.py.
| tuple SMESH_test0.edgeList = geompy.SubShapeAll(face, geompy.ShapeType["EDGE"]) |
Definition at line 57 of file SMESH_test0.py.
| list SMESH_test0.face = subShapeList[0] |
Definition at line 42 of file SMESH_test0.py.
| tuple SMESH_test0.idbox = geompy.addToStudy(box, "box") |
Definition at line 37 of file SMESH_test0.py.
| tuple SMESH_test0.idedge = geompy.addToStudyInFather(face, edge, name) |
Definition at line 61 of file SMESH_test0.py.
| tuple SMESH_test0.idface = geompy.addToStudyInFather(box, face, name) |
Definition at line 45 of file SMESH_test0.py.
| tuple SMESH_test0.idshell = geompy.addToStudyInFather(box, shell, name) |
Definition at line 53 of file SMESH_test0.py.
| tuple SMESH_test0.myBuilder = salome.myStudy.NewBuilder() |
Definition at line 32 of file SMESH_test0.py.
| tuple SMESH_test0::name = geompy.SubShapeName(face, box) |
Definition at line 43 of file SMESH_test0.py.
| list SMESH_test0.shell = subShellList[0] |
Definition at line 50 of file SMESH_test0.py.
| tuple SMESH_test0.subShapeList = geompy.SubShapeAll(box, geompy.ShapeType["FACE"]) |
Definition at line 41 of file SMESH_test0.py.
| tuple SMESH_test0.subShellList = geompy.SubShapeAll(box, geompy.ShapeType["SHELL"]) |
Definition at line 49 of file SMESH_test0.py.