git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@853 626c5289-ae23-0410-ae9c-e8d60b6d4f22
15 lines
253 B
C
15 lines
253 B
C
/* File : example.c */
|
|
|
|
#include "example.h"
|
|
|
|
double dot_product(Vector a, Vector b) {
|
|
return (a.x*b.x + a.y*b.y + a.z*b.z);
|
|
}
|
|
|
|
Vector vector_add(Vector a, Vector b) {
|
|
Vector r;
|
|
r.x = a.x + b.x;
|
|
r.y = a.y + b.y;
|
|
r.z = a.z + b.z;
|
|
return r;
|
|
}
|