shithub: qk1

ref: 9ca8a4f708e2d532e60a8d5ecc53f5c773187a31
dir: /m_dotproduct.c/

View raw version
#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];
}