Sophie

Sophie

distrib > Mandriva > 9.1 > ppc > by-pkgid > 58f5a40828161dc688bc640be9c7bd55 > files > 500

swig-1.3.11-4mdk.ppc.rpm

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