update swig on windows
This commit is contained in:
13
winx64/bin/swigwin-4.0.0/Examples/php/value/example.c
Normal file
13
winx64/bin/swigwin-4.0.0/Examples/php/value/example.c
Normal file
@@ -0,0 +1,13 @@
|
||||
/* 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);
|
||||
}
|
||||
|
||||
void vector_add(Vector a, Vector b, Vector* result) {
|
||||
result->x = a.x + b.x;
|
||||
result->y = a.y + b.y;
|
||||
result->z = a.z + b.z;
|
||||
}
|
||||
Reference in New Issue
Block a user