Add function header comment to vector_dot()

This commit is contained in:
Eryn Wells 2013-09-08 11:38:13 -07:00
parent 8a8d63055f
commit 062074f034

View file

@ -90,6 +90,11 @@ vector_length(Vector3 v)
}
/*
* vector_dot --
*
* Compute the dot product of v and f.
*/
float
vector_dot(Vector3 v, Vector3 f)
{