| 115 | } |
| 116 | |
| 117 | int LNLIB_UV_is_almost_equal(UV_C a, UV_C b, double epsilon) |
| 118 | { |
| 119 | return (LNLib::MathUtils::IsAlmostEqualTo(a.u, b.u, epsilon) && |
| 120 | LNLib::MathUtils::IsAlmostEqualTo(a.v, b.v, epsilon)) ? 1 : 0; |
| 121 | } |
| 122 | |
| 123 | double LNLIB_UV_dot_product(UV_C a, UV_C b) |
| 124 | { |
nothing calls this directly
no outgoing calls
no test coverage detected