More SWIG bindings.

This commit is contained in:
David Williams
2011-01-18 21:59:21 +00:00
parent 03d9eb718f
commit c1ebed678e
6 changed files with 62 additions and 2 deletions

View File

@ -0,0 +1,13 @@
%module CubicSurfaceExtractorWithNormals
%{
#include "VolumeSampler.h"
//#include "CubicSurfaceExtractor.h"
#include "CubicSurfaceExtractorWithNormals.h"
%}
%include "VolumeSampler.h"
//%include "CubicSurfaceExtractor.h"
%include "CubicSurfaceExtractorWithNormals.h"
%template(CubicSurfaceExtractorWithNormalsMaterial8) PolyVox::CubicSurfaceExtractorWithNormals<PolyVox::Material8>;
%template(CubicSurfaceExtractorWithNormalsDensity8) PolyVox::CubicSurfaceExtractorWithNormals<PolyVox::Density8>;