shithub: qk1

ref: f636a9deaf4598ff7e48209b1a4b1f04f294a00a
dir: /dotproduct.c/

View raw version
float
DotProduct(float v1[3], float v2[3])
{
	return v1[0]*v2[0] + v1[1]*v2[1] + v1[2]*v2[2];
}