Skip to content
Snippets Groups Projects
Commit 60206b37 authored by Thomas Toulorge's avatar Thomas Toulorge
Browse files

Added GFaceCompound and other details to gmshpy

parent 52d7957b
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
#include "GVertex.h" #include "GVertex.h"
#include "GEdge.h" #include "GEdge.h"
#include "GFace.h" #include "GFace.h"
#include "GFaceCompound.h"
#include "GRegion.h" #include "GRegion.h"
#include "GPoint.h" #include "GPoint.h"
#include "discreteFace.h" #include "discreteFace.h"
...@@ -49,6 +50,8 @@ namespace std { ...@@ -49,6 +50,8 @@ namespace std {
%template(GRegionVector) vector<GRegion*, std::allocator<GRegion*> >; %template(GRegionVector) vector<GRegion*, std::allocator<GRegion*> >;
%template(MVertexVector) vector< MVertex *,std::allocator< MVertex * > >; %template(MVertexVector) vector< MVertex *,std::allocator< MVertex * > >;
%template(MElementVector) vector< MElement *,std::allocator< MElement * > >; %template(MElementVector) vector< MElement *,std::allocator< MElement * > >;
%template(MTriangleVector) vector< MTriangle *,std::allocator< MTriangle * > >;
%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(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 * > > > >; %template(GFaceVectorVector) vector< std::vector< GFace *,std::allocator< GFace * > >,std::allocator< std::vector< GFace *,std::allocator< GFace * > > > >;
%template(GFaceList) list<GFace*, std::allocator<GFace*> >; %template(GFaceList) list<GFace*, std::allocator<GFace*> >;
...@@ -77,6 +80,7 @@ namespace std { ...@@ -77,6 +80,7 @@ namespace std {
%apply std::vector<SPoint3> &OUTPUT{std::vector<SPoint3> &dpts} %apply std::vector<SPoint3> &OUTPUT{std::vector<SPoint3> &dpts}
%include "GEdge.h" %include "GEdge.h"
%include "GFace.h" %include "GFace.h"
%include "GFaceCompound.h"
%include "GRegion.h" %include "GRegion.h"
%include "GPoint.h" %include "GPoint.h"
%include "discreteFace.h" %include "discreteFace.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment