(out: Vec2Value, x: number, y: number)
| 29 | } |
| 30 | |
| 31 | export function setVec2(out: Vec2Value, x: number, y: number): Vec2Value { |
| 32 | out.x = x; |
| 33 | out.y = y; |
| 34 | return out; |
| 35 | } |
| 36 | |
| 37 | export function copyVec2(out: Vec2Value, w: Vec2Value): Vec2Value { |
| 38 | out.x = w.x; |
nothing calls this directly
no outgoing calls
no test coverage detected