(a: Vector, b: Vector)
| 27 | }; |
| 28 | |
| 29 | export const eq = (a: Vector, b: Vector) => { |
| 30 | "worklet"; |
| 31 | return a.x === b.x && a.y === b.y; |
| 32 | }; |
| 33 | |
| 34 | export const contains = (vecs: Vector[], vec: Vector) => { |
| 35 | "worklet"; |
no outgoing calls
no test coverage detected