00001 # Example hwo to use the basic fem classes. The Fem module is dependend on Part but nor on other Modules. 00002 # So we need only: 00003 from Fem import * 00004 from Part import * 00005 from FreeCAD import * 00006 00007 m = FemMesh() 00008 m.NodeCount 00009 00010 b = makeBox(10,10,10) 00011 m.setShape(b) 00012 00013 m.NodeCount