dwww Home | Show directory contents | Find package

//
// FILE : vector.i

%{
#include "vector.h"
%}

%inline {

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 */

}

Generated by dwww version 1.15 on Tue Jul 2 00:32:41 CEST 2024.