(float v1x, float v1y, float v2x, float v2y)
| 142 | } |
| 143 | |
| 144 | public static float dot(float v1x, float v1y, float v2x, float v2y) |
| 145 | { |
| 146 | return v1x * v2x + v1y * v2y; |
| 147 | } |
| 148 | |
| 149 | public static float dot(PointF v1, PointF v2) |
| 150 | { |
nothing calls this directly
no outgoing calls
no test coverage detected