PR: examples adaptation to geomBuilder and smeshBuilder

This commit is contained in:
prascle 2013-03-22 00:31:28 +00:00
parent 9bb4cc82c2
commit 63dc53a14d

View File

@ -19,7 +19,7 @@ idbox = geompy.addToStudy(box, "box")
mesh = smesh.Mesh(box, "Mesh_free_nodes")
algo = mesh.Segment()
algo.NumberOfSegments(10)
algo = mesh.Triangle(smesh.MEFISTO)
algo = mesh.Triangle(smeshBuilder.MEFISTO)
algo.MaxElementArea(150.)
mesh.Compute()