Variables | |
| 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 | mesh = smesh.Mesh(box, "Meshbox") |
| tuple | algoReg1 = mesh.Segment() |
| tuple | hypNbSeg1 = algoReg1.NumberOfSegments(7) |
| tuple | algoMef1 = mesh.Triangle() |
| tuple | hypArea1 = algoMef1.MaxElementArea(2500) |
| tuple | algoReg2 = mesh.Segment(edge) |
| tuple | hypLen1 = algoReg2.LocalLength(100) |
| tuple | algoMef2 = mesh.Triangle(face) |
| tuple | hypArea2 = algoMef2.MaxElementArea(500) |
| tuple SMESH_test1.algoMef1 = mesh.Triangle() |
Definition at line 77 of file SMESH_test1.py.
| tuple SMESH_test1.algoMef2 = mesh.Triangle(face) |
Definition at line 100 of file SMESH_test1.py.
| tuple SMESH_test1.algoReg1 = mesh.Segment() |
Definition at line 70 of file SMESH_test1.py.
| tuple SMESH_test1.algoReg2 = mesh.Segment(edge) |
Definition at line 88 of file SMESH_test1.py.
| tuple SMESH_test1.box = geompy.MakeBox(0., 0., 0., 100., 200., 300.) |
Definition at line 33 of file SMESH_test1.py.
| tuple SMESH_test1::edge = edgeList[0] |
Definition at line 55 of file SMESH_test1.py.
| tuple SMESH_test1.edgeList = geompy.SubShapeAll(face, geompy.ShapeType["EDGE"]) |
Definition at line 54 of file SMESH_test1.py.
| tuple SMESH_test1::face = subShapeList[0] |
Definition at line 39 of file SMESH_test1.py.
| tuple SMESH_test1.hypArea1 = algoMef1.MaxElementArea(2500) |
Definition at line 78 of file SMESH_test1.py.
| tuple SMESH_test1.hypArea2 = algoMef2.MaxElementArea(500) |
Definition at line 101 of file SMESH_test1.py.
| tuple SMESH_test1.hypLen1 = algoReg2.LocalLength(100) |
Definition at line 89 of file SMESH_test1.py.
| tuple SMESH_test1.hypNbSeg1 = algoReg1.NumberOfSegments(7) |
Definition at line 71 of file SMESH_test1.py.
| tuple SMESH_test1.idbox = geompy.addToStudy(box, "box") |
Definition at line 34 of file SMESH_test1.py.
| tuple SMESH_test1.idedge = geompy.addToStudyInFather(face, edge, name) |
Definition at line 58 of file SMESH_test1.py.
| tuple SMESH_test1.idface = geompy.addToStudyInFather(box, face, name) |
Definition at line 42 of file SMESH_test1.py.
| tuple SMESH_test1.idshell = geompy.addToStudyInFather(box, shell, name) |
Definition at line 50 of file SMESH_test1.py.
| tuple SMESH_test1.mesh = smesh.Mesh(box, "Meshbox") |
Definition at line 67 of file SMESH_test1.py.
| tuple SMESH_test1::name = geompy.SubShapeName(face, box) |
Definition at line 40 of file SMESH_test1.py.
| list SMESH_test1.shell = subShellList[0] |
Definition at line 47 of file SMESH_test1.py.
| tuple SMESH_test1.subShapeList = geompy.SubShapeAll(box, geompy.ShapeType["FACE"]) |
Definition at line 38 of file SMESH_test1.py.
| tuple SMESH_test1.subShellList = geompy.SubShapeAll(box, geompy.ShapeType["SHELL"]) |
Definition at line 46 of file SMESH_test1.py.