(float v1x, float v1y, float v2x, float v2y)
| 152 | } |
| 153 | |
| 154 | public static float cross(float v1x, float v1y, float v2x, float v2y) |
| 155 | { |
| 156 | return v1x * v2y - v1y * v2x; |
| 157 | } |
| 158 | |
| 159 | public static float cross(PointF v1, PointF v2) |
| 160 | { |
nothing calls this directly
no outgoing calls
no test coverage detected