A few more tiny steps in the right direction

Getting templates to work is the next thing
This commit is contained in:
Matt Williams
2009-03-28 13:08:29 +00:00
parent 00f19e05a4
commit 58355da40b
8 changed files with 47 additions and 6 deletions

10
library/bindings/Vector.i Normal file
View File

@ -0,0 +1,10 @@
%module Vector
%{
#include "PolyVoxCore/Vector.h"
%}
%include "PolyVoxCore/Vector.h"
%template(VectorTest) PolyVox::Vector<3,float>;
%rename(assign) VectorTest::operator=;