ref: a8a766f53153710122d2fd1d9a8f53059d254c38 dir: /dotproduct.c/
#include "quakedef.h" float DotProduct(const vec3_t v1, const vec3_t v2) { return v1[0]*v2[0] + v1[1]*v2[1] + v1[2]*v2[2]; }