* Calculate linear interpolation between two vectors */
| 233 | * Calculate linear interpolation between two vectors |
| 234 | */ |
| 235 | RLCPP_NODISCARD Vector2 Lerp(const ::Vector2& vector2, float amount) const { return Vector2Lerp(*this, vector2, amount); } |
| 236 | |
| 237 | /** |
| 238 | * Calculate reflected vector to normal |
nothing calls this directly
no outgoing calls
no test coverage detected