From 7410b5e2c63468d9a45900377b8ca2bf9c9adaf3 Mon Sep 17 00:00:00 2001 From: Jonathan Lambrechts <jonathan.lambrechts@uclouvain.be> Date: Wed, 3 Jun 2015 16:41:25 +0000 Subject: [PATCH] gmshpy : wrappers for MTetrahedron.h were missing --- wrappers/gmshpy/gmshGeo.i | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wrappers/gmshpy/gmshGeo.i b/wrappers/gmshpy/gmshGeo.i index 9cb1d60ccb..df1b615434 100644 --- a/wrappers/gmshpy/gmshGeo.i +++ b/wrappers/gmshpy/gmshGeo.i @@ -27,6 +27,7 @@ #include "MElement.h" #include "MVertex.h" #include "MTriangle.h" + #include "MTetrahedron.h" #include "MPrism.h" #include "MHexahedron.h" #include "MQuadrangle.h" @@ -52,6 +53,7 @@ namespace std { %template(MVertexVector) vector< MVertex *,std::allocator< MVertex * > >; %template(MElementVector) vector< MElement *,std::allocator< MElement * > >; %template(MTriangleVector) vector< MTriangle *,std::allocator< MTriangle * > >; + %template(MTetrahedronVector) vector< MTetrahedron *,std::allocator< MTetrahedron * > >; %template(MQuadrangleVector) vector< MQuadrangle *,std::allocator< MQuadrangle * > >; %template(GEdgeVectorVector) vector< std::vector< GEdge *,std::allocator< GEdge * > >,std::allocator< std::vector< GEdge *,std::allocator< GEdge * > > > >; %template(GFaceVectorVector) vector< std::vector< GFace *,std::allocator< GFace * > >,std::allocator< std::vector< GFace *,std::allocator< GFace * > > > >; @@ -115,6 +117,7 @@ namespace std { %ignore MVertex::z(); %include "MVertex.h" %include "MTriangle.h" +%include "MTetrahedron.h" %include "MPrism.h" %include "MHexahedron.h" %include "MQuadrangle.h" -- GitLab