Create nodes set by poly pick

This commit is contained in:
jriegel
2013-03-02 16:04:55 +01:00
parent f81425974b
commit 6593dc97b8
3 changed files with 169 additions and 95 deletions

View File

@@ -34,6 +34,12 @@
#include "FemMesh.h"
#include "FemMeshProperty.h"
#include "FemMeshObject.h"
#include "FemSetElementsObject.h"
#include "FemSetFacesObject.h"
#include "FemSetGeometryObject.h"
#include "FemSetNodesObject.h"
#include "HypothesisPy.h"
extern struct PyMethodDef Fem_methods[];
@@ -99,9 +105,16 @@ void AppFemExport initFem()
// call PyType_Ready, otherwise we run into a segmentation fault, later on.
// This function is responsible for adding inherited slots from a type's base class.
Fem::FemMesh ::init();
Fem::FemMeshObject ::init();
Fem::PropertyFemMesh ::init();
Fem::FemMesh ::init();
Fem::FemMeshObject ::init();
Fem::PropertyFemMesh ::init();
Fem::FemSetObject ::init();
Fem::FemSetElementsObject ::init();
Fem::FemSetFacesObject ::init();
Fem::FemSetGeometryObject ::init();
Fem::FemSetNodesObject ::init();
}
} // extern "C"