* Dot product of two 2-vectors. (float version). */
| 703 | * Dot product of two 2-vectors. (float version). |
| 704 | */ |
| 705 | static float Dot2D(const float x[2], const float y[2]) { return x[0] * y[0] + x[1] * y[1]; } |
| 706 | |
| 707 | /** |
| 708 | * Dot product of two 2-vectors. (double version). |
no outgoing calls