//
// FILE : vector.i

%init Vector_Init
%{
#include "vector.h"
%}

%section "Vector Operations"

extern Vector *createv(double x,double y,double z,double w);
/* Creates a new vector v(x,y,z,w) */

extern void destroyv(Vector *v);
/* Destroys the vector v */

extern void   printv(Vector *v);
/* Prints out the vector v */

extern void   transform(double **T, Vector *v, Vector *t);
/* Transforms vector c to vector t by M*v --> t */





syntax highlighted by Code2HTML, v. 0.9.1