Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 import salome
00028 import geompy
00029 from geompy import geom
00030
00031
00032 myBuilder = salome.myStudy.NewBuilder()
00033
00034
00035
00036 box = geompy.MakeBox(0., 0., 0., 100., 200., 300.)
00037 idbox = geompy.addToStudy(box, "box")
00038
00039
00040
00041 subShapeList = geompy.SubShapeAll(box, geompy.ShapeType["FACE"])
00042 face = subShapeList[0]
00043 name = geompy.SubShapeName(face, box)
00044 print name
00045 idface = geompy.addToStudyInFather(box, face, name)
00046
00047
00048
00049 subShellList = geompy.SubShapeAll(box, geompy.ShapeType["SHELL"])
00050 shell = subShellList[0]
00051 name = geompy.SubShapeName(shell, box)
00052 print name
00053 idshell = geompy.addToStudyInFather(box, shell, name)
00054
00055
00056
00057 edgeList = geompy.SubShapeAll(face, geompy.ShapeType["EDGE"])
00058 edge = edgeList[0]
00059 name = geompy.SubShapeName(edge, face)
00060 print name
00061 idedge = geompy.addToStudyInFather(face, edge, name)
00062
00063 salome.sg.updateObjBrowser(1)