| 279 | return x == 0.f && y == 0.f; |
| 280 | } |
| 281 | bool isFinite() const { |
| 282 | return std::isfinite(x) && std::isfinite(y); |
| 283 | } |
| 284 | Vec clamp(Rect bound) const; |
| 285 | Vec clampSafe(Rect bound) const; |
| 286 | Vec crossfade(Vec b, float p) { |
no outgoing calls
no test coverage detected