~esys-p-dev/esys-particle/gengeo

« back to all changes in this revision

Viewing changes to Python/ExportModuleUtil.cc

  • Committer: Dion Weatherley
  • Date: 2014-12-15 04:05:00 UTC
  • Revision ID: d.weatherley@uq.edu.au-20141215040500-wzwl42djikubfk9b
Added MeshVolWithJointSet

Sub-classes MeshVolume to permit inclusion of joint sets within triangle mesh volumes

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
#include "IntersectionVolPy.h"
54
54
#include "DifferenceVolPy.h"
55
55
#include "MeshVolumePy.h"
 
56
#include "MeshVolWithJointSetPy.h"
56
57
#include "ClippedCircleVolPy.h"
57
58
 
58
59
using namespace boost::python;
104
105
  exportIntersectionVol();
105
106
  exportDifferenceVol();
106
107
  exportMeshVolume();
 
108
  exportMeshVolWithJointSet();
107
109
  exportClippedCircleVol();
108
110
}