shithub: qk1

ref: e2e4c5b3848a7fe20a3fed5a5dda4d2cab0d129c
dir: /m_dotproduct.c/

View raw version
#include "quakedef.h"

vec_t
DotProduct(const vec3_t v1, const vec3_t v2)
{
	return v1[0]*v2[0] + v1[1]*v2[1] + v1[2]*v2[2];
}