| 80 | } |
| 81 | |
| 82 | inline DbVector2 operator/(const DbVector2& v, float scalar) { |
| 83 | if (scalar == 0.0f) { |
| 84 | return DbVector2(0.0f, 0.0f); |
| 85 | } |
| 86 | return DbVector2(v.x / scalar, v.y / scalar); |
| 87 | } |
| 88 | |
| 89 | struct Config { |
| 90 | int32_t id; |
nothing calls this directly
no test coverage detected
searching dependent graphs…