Go to the source code of this file.
Packages | |
| package | SMESH_test1 |
Variables | |
| tuple | SMESH_test1.box = geompy.MakeBox(0., 0., 0., 100., 200., 300.) |
| tuple | SMESH_test1.idbox = geompy.addToStudy(box, "box") |
| tuple | SMESH_test1.subShapeList = geompy.SubShapeAll(box, geompy.ShapeType["FACE"]) |
| list | SMESH_test1.face = subShapeList[0] |
| tuple | SMESH_test1.name = geompy.SubShapeName(face, box) |
| tuple | SMESH_test1.idface = geompy.addToStudyInFather(box, face, name) |
| tuple | SMESH_test1.subShellList = geompy.SubShapeAll(box, geompy.ShapeType["SHELL"]) |
| list | SMESH_test1.shell = subShellList[0] |
| tuple | SMESH_test1.idshell = geompy.addToStudyInFather(box, shell, name) |
| tuple | SMESH_test1.edgeList = geompy.SubShapeAll(face, geompy.ShapeType["EDGE"]) |
| list | SMESH_test1.edge = edgeList[0] |
| tuple | SMESH_test1.idedge = geompy.addToStudyInFather(face, edge, name) |
| tuple | SMESH_test1.mesh = smesh.Mesh(box, "Meshbox") |
| tuple | SMESH_test1.algoReg1 = mesh.Segment() |
| tuple | SMESH_test1.hypNbSeg1 = algoReg1.NumberOfSegments(7) |
| tuple | SMESH_test1.algoMef1 = mesh.Triangle() |
| tuple | SMESH_test1.hypArea1 = algoMef1.MaxElementArea(2500) |
| tuple | SMESH_test1.algoReg2 = mesh.Segment(edge) |
| tuple | SMESH_test1.hypLen1 = algoReg2.LocalLength(100) |
| tuple | SMESH_test1.algoMef2 = mesh.Triangle(face) |
| tuple | SMESH_test1.hypArea2 = algoMef2.MaxElementArea(500) |