swig/Examples/guile/matrix/vector.i
Matthias Köppe c883555fb3 Updated Guile examples.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@738 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2000-08-30 20:36:59 +00:00

23 lines
419 B
OpenEdge ABL

//
// FILE : vector.i
%{
#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 */