Searched refs:v1y (Results 1 – 1 of 1) sorted by relevance
119 public static float dot(float v1x, float v1y, float v2x, float v2y) { in dot() argument120 return v1x * v2x + v1y * v2y; in dot()123 public static float cross(float v1x, float v1y, float v2x, float v2y) { in cross() argument124 return v1x * v2y - v1y * v2x; in cross()