(a: Vec2Value, b: Vec2Value)
| 157 | } |
| 158 | |
| 159 | export function crossVec2Vec2(a: Vec2Value, b: Vec2Value): number { |
| 160 | return a.x * b.y - a.y * b.x; |
| 161 | } |
| 162 | |
| 163 | export function dotVec2(a: Vec2Value, b: Vec2Value): number { |
| 164 | return a.x * b.x + a.y * b.y; |
nothing calls this directly
no outgoing calls
no test coverage detected